From: Lennart Poettering Date: Fri, 25 Feb 2011 01:56:27 +0000 (+0100) Subject: cryptsetup: add a terse help X-Git-Tag: v19~10 X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?p=elogind.git;a=commitdiff_plain;h=dd5e696d93f70bbfaf8423682e7731fefa83f828 cryptsetup: add a terse help --- diff --git a/src/cryptsetup.c b/src/cryptsetup.c index 506ce9b5c..989734be1 100644 --- a/src/cryptsetup.c +++ b/src/cryptsetup.c @@ -207,6 +207,17 @@ finish: return mp; } +static int help(void) { + + printf("%s attach VOLUME SOURCEDEVICE [PASSWORD] [OPTIONS]\n" + "%s detach VOLUME\n\n" + "Attaches or detaches an encrypted block device.\n", + program_invocation_short_name, + program_invocation_short_name); + + return 0; +} + int main(int argc, char *argv[]) { int r = EXIT_FAILURE; struct crypt_device *cd = NULL; @@ -214,6 +225,11 @@ int main(int argc, char *argv[]) { const char *cipher = NULL, *cipher_mode = NULL, *hash = NULL, *name = NULL; char *description = NULL, *name_buffer = NULL, *mount_point = NULL; + if (argc <= 1) { + help(); + return EXIT_SUCCESS; + } + if (argc < 3) { log_error("This program requires at least two arguments."); return EXIT_FAILURE;