diff options
author | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2014-10-18 01:30:54 -0400 |
---|---|---|
committer | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2014-10-23 00:18:15 -0400 |
commit | 1af719edc5958c01c19204fb68d6fc45c9eea85c (patch) | |
tree | 5e8890b0e987da878983c97e098d6546f641e5c8 /src/journal-remote | |
parent | 43300d9d38dd26b197c70401d3054483ba248b95 (diff) |
systemd-upload: print paths in help()
Diffstat (limited to 'src/journal-remote')
-rw-r--r-- | src/journal-remote/journal-remote.c | 2 | ||||
-rw-r--r-- | src/journal-remote/journal-upload.c | 9 |
2 files changed, 7 insertions, 4 deletions
diff --git a/src/journal-remote/journal-remote.c b/src/journal-remote/journal-remote.c index 08037539be..d78607c541 100644 --- a/src/journal-remote/journal-remote.c +++ b/src/journal-remote/journal-remote.c @@ -1173,7 +1173,7 @@ static void help(void) { " --listen-raw=ADDR Listen for connections at ADDR\n" " --listen-http=ADDR Listen for HTTP connections at ADDR\n" " --listen-https=ADDR Listen for HTTPS connections at ADDR\n" - " -o --output=FILE|DIR Write output to FILE or DIR/external-*.journal\n" + " -o --output=FILE|DIR Write output to FILE or DIR/external-*.journal\n" " --compress[=BOOL] Use XZ-compression in the output journal (default: yes)\n" " --seal[=BOOL] Use Event sealing in the output journal (default: no)\n" " --key=FILENAME Specify key in PEM format (default:\n" diff --git a/src/journal-remote/journal-upload.c b/src/journal-remote/journal-upload.c index bf3a059c3b..3937683790 100644 --- a/src/journal-remote/journal-upload.c +++ b/src/journal-remote/journal-upload.c @@ -506,9 +506,12 @@ static void help(void) { " -h --help Show this help\n" " --version Show package version\n" " -u --url=URL Upload to this address\n" - " --key=FILENAME Specify key in PEM format\n" - " --cert=FILENAME Specify certificate in PEM format\n" - " --trust=FILENAME Specify CA certificate in PEM format\n" + " --key=FILENAME Specify key in PEM format (default:\n" + " \"" PRIV_KEY_FILE "\")\n" + " --cert=FILENAME Specify certificate in PEM format (default:\n" + " \"" CERT_FILE "\")\n" + " --trust=FILENAME|all Specify CA certificate or disable checking (default:\n" + " \"" TRUST_FILE "\")\n" " --system Use the system journal\n" " --user Use the user journal for the current user\n" " -m --merge Use all available journals\n" |