@@ -40,7 +40,7 @@ Add to your {{.Home}}/.ssh/config:
4040
4141Host {{.Hostname}}
4242{{- if .ShortLivedCerts}}
43- ProxyCommand bash -c '{{.Cloudflared}} access ssh-gen --hostname %h; ssh -tt %r@cfpipe-{{.Hostname}} >&2 <&1'
43+ ProxyCommand bash -c '{{.Cloudflared}} access ssh-gen --hostname %h; ssh -tt %r@cfpipe-{{.Hostname}} >&2 <&1'
4444
4545Host cfpipe-{{.Hostname}}
4646 HostName {{.Hostname}}
@@ -77,9 +77,9 @@ func Commands() []*cli.Command {
7777 Aliases : []string {"forward" },
7878 Category : "Access" ,
7979 Usage : "access <subcommand>" ,
80- Description : `Cloudflare Access protects internal resources by securing, authenticating and monitoring access
81- per-user and by application. With Cloudflare Access, only authenticated users with the required permissions are
82- able to reach sensitive resources. The commands provided here allow you to interact with Access protected
80+ Description : `Cloudflare Access protects internal resources by securing, authenticating and monitoring access
81+ per-user and by application. With Cloudflare Access, only authenticated users with the required permissions are
82+ able to reach sensitive resources. The commands provided here allow you to interact with Access protected
8383 applications from the command line.` ,
8484 Subcommands : []* cli.Command {
8585 {
@@ -89,7 +89,7 @@ func Commands() []*cli.Command {
8989 Description : `The login subcommand initiates an authentication flow with your identity provider.
9090 The subcommand will launch a browser. For headless systems, a url is provided.
9191 Once authenticated with your identity provider, the login command will generate a JSON Web Token (JWT)
92- scoped to your identity, the application you intend to reach, and valid for a session duration set by your
92+ scoped to your identity, the application you intend to reach, and valid for a session duration set by your
9393 administrator. cloudflared stores the token in local storage.` ,
9494 Flags : []cli.Flag {
9595 & cli.StringFlag {
@@ -164,7 +164,7 @@ func Commands() []*cli.Command {
164164 & cli.StringFlag {
165165 Name : logger .LogSSHLevelFlag ,
166166 Aliases : []string {"loglevel" }, //added to match the tunnel side
167- Usage : "Application logging level {fatal, error, info, debug }. " ,
167+ Usage : "Application logging level {debug, info, warn, error, fatal }. " ,
168168 },
169169 & cli.StringFlag {
170170 Name : sshConnectTo ,
@@ -296,7 +296,6 @@ func curl(c *cli.Context) error {
296296 return run ("curl" , cmdArgs ... )
297297}
298298
299-
300299// run kicks off a shell task and pipe the results to the respective std pipes
301300func run (cmd string , args ... string ) error {
302301 c := exec .Command (cmd , args ... )
0 commit comments