From 32ca815896c75e01d2485977868c225f72d8d115 Mon Sep 17 00:00:00 2001 From: James Shubin Date: Tue, 2 Jan 2024 13:04:49 -0500 Subject: [PATCH] lib, docs: Small cleanups Formatting and removing of old docs. --- docs/documentation.md | 16 ---------------- lib/cli.go | 4 ++-- 2 files changed, 2 insertions(+), 18 deletions(-) diff --git a/docs/documentation.md b/docs/documentation.md index 21dd760d..508fec45 100644 --- a/docs/documentation.md +++ b/docs/documentation.md @@ -364,27 +364,11 @@ collision with this globally defined semaphore. The size value must be greater than zero at this time. The traditional non-parallel execution found in config management tools such as `Puppet` can be obtained with `--sema 1`. -#### `--allow-interactive` - -Allow interactive prompting for SSH passwords if there is no authentication -method that works. - #### `--ssh-priv-id-rsa` Specify the path for finding SSH keys. This defaults to `~/.ssh/id_rsa`. To never use this method of authentication, set this to the empty string. -#### `--cconns` - -The maximum number of concurrent remote ssh connections to run. This defaults -to `0`, which means unlimited. - -#### `--no-caching` - -Don't allow remote caching of the remote execution binary. This will require -the binary to be copied over for every remote execution, but it limits the -likelihood that there is leftover information from the configuration process. - #### `--prefix ` Specify a path to a custom working directory prefix. This directory will get diff --git a/lib/cli.go b/lib/cli.go index 565f3605..283c48f0 100644 --- a/lib/cli.go +++ b/lib/cli.go @@ -54,8 +54,8 @@ func CLI(cliArgs *CLIArgs) error { } // All of these flags can be accessed in your GAPI implementation with - // the `c.Lineage()[1].Type` and `c.Lineage()[1].IsSet` functions. Their own - // flags can be accessed with `c.Type` and `c.IsSet` directly. + // the `c.Lineage()[1].Type` and `c.Lineage()[1].IsSet` functions. Their + // own flags can be accessed with `c.Type` and `c.IsSet` directly. runFlags := []cli.Flag{ // common flags which all can use