summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJon Bratseth <bratseth@oath.com>2018-09-18 20:08:40 -0700
committerGitHub <noreply@github.com>2018-09-18 20:08:40 -0700
commit80a159536b3f312f47d482dbb4e916126446e93e (patch)
treeb513f04258bb8c48cae4ae94386e2989a42ed296
parenta280933161001785f900d381357e6802ee274ada (diff)
parentdc206b75daf65e0195bd1cce4f432a45aee9bcd9 (diff)
Merge pull request #6999 from vespa-engine/frodelu/update-usage
Added more options to usage output
-rwxr-xr-xconfig-model/src/main/perl/vespa-deploy8
1 files changed, 8 insertions, 0 deletions
diff --git a/config-model/src/main/perl/vespa-deploy b/config-model/src/main/perl/vespa-deploy
index 8d2d65b5551..4ed8311d7ae 100755
--- a/config-model/src/main/perl/vespa-deploy
+++ b/config-model/src/main/perl/vespa-deploy
@@ -240,6 +240,14 @@ sub usage {
print "Usage: vespa-deploy [-h] [-v] [-f] [-t] [-p] [-V] [<command>] [args]\n";
print "Supported commands: 'upload', 'prepare', 'activate', 'fetch' and 'help'\n";
print "Supported options: '-h' (help), '-v' (verbose), '-f' (force/ignore validation errors), '-t' (timeout in seconds), '-p' (config server http port)\n";
+ print " '-h' (help)\n";
+ print " '-v' (verbose)\n";
+ print " '-n' (dry-run)\n";
+ print " '-f' (force/ignore validation errors)\n";
+ print " '-t <timeout>' (timeout in seconds)\n";
+ print " '-c <server>' (config server hostname)\n";
+ print " '-p <port>' (config server http port)\n\n";
+
print "Try 'vespa-deploy help <command>' to get more help\n";
}
}