Skip to content

Commit f64e0da

Browse files
docs(server): fix info about scanning licenses on the client side. (#9805)
Co-authored-by: Teppei Fukuda <[email protected]>
1 parent 31218f6 commit f64e0da

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

docs/docs/references/modes/client-server.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ Some scanners run on the client side, even in client/server mode.
1616
| License | Server |
1717

1818
!!! note
19-
Scanning of misconfigurations and licenses is performed on the client side (as in standalone mode).
19+
Scanning of misconfigurations and secrets is performed on the client side (as in standalone mode).
2020
Otherwise, the client would need to send files to the server that may contain sensitive information.
2121

2222
## Server

pkg/commands/artifact/run.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -468,7 +468,7 @@ func checkOptions(ctx context.Context, opts flag.Options, targetKind TargetKind)
468468
if opts.ServerAddr != "" && opts.Scanners.AnyEnabled(types.MisconfigScanner, types.SecretScanner) {
469469
log.WarnContext(ctx,
470470
fmt.Sprintf(
471-
"Trivy runs in client/server mode, but misconfiguration and license scanning will be done on the client side, see %s",
471+
"Trivy runs in client/server mode, but misconfiguration and secret scanning will be done on the client side, see %s",
472472
doc.URL("/docs/references/modes/client-server", ""),
473473
),
474474
)

0 commit comments

Comments
 (0)