Skip to content

Commit 5df43d6

Browse files
leodidopoiana
authored andcommitted
fix(cmd): help messages for TLS commands
Signed-off-by: Leonardo Di Donato <[email protected]>
1 parent d1e20ac commit 5df43d6

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

cmd/install_tls.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,9 +30,9 @@ func NewTLSInstallCommand(streams genericclioptions.IOStreams) *cobra.Command {
3030
Use: "tls",
3131
DisableFlagsInUseLine: true,
3232
Short: "Generate and install TLS material to be used with the Falco gRPC server",
33-
Long: `Falco runs with mutually encrypted TLS by default.
33+
Long: `Falco gRPC server runs with mutually encrypted TLS by default.
3434
35-
This command is a convenience to not only generate the TLS material - but also drop it off on the local filesystem.`,
35+
This command is a convenience to not only generate the TLS material, but also drop it off on the local filesystem.`,
3636
RunE: func(cmd *cobra.Command, args []string) error {
3737
logger.Critical("this command only works on machines running a linux kernel")
3838

cmd/install_tls_linux.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,9 +53,9 @@ func NewTLSInstallCommand(streams genericclioptions.IOStreams) *cobra.Command {
5353
Use: "tls",
5454
DisableFlagsInUseLine: true,
5555
Short: "Generate and install TLS material to be used with the Falco gRPC server",
56-
Long: `Falco runs with mutually encrypted TLS by default.
56+
Long: `Falco gRPC server runs with mutually encrypted TLS by default.
5757
58-
This command is a convenience to not only generate the TLS material - but also drop it off on the local filesystem.`,
58+
This command is a convenience to not only generate the TLS material, but also drop it off on the local filesystem.`,
5959
RunE: func(cmd *cobra.Command, args []string) error {
6060
g := tls.NewGRPCTLSGenerator(o.country, o.org, o.name)
6161
err := g.Generate()

0 commit comments

Comments
 (0)