From 753f42ab8d50f92e36d3b06a2a47630bed69f257 Mon Sep 17 00:00:00 2001 From: Denis Vlasenko Date: Fri, 15 Feb 2008 15:17:23 +0000 Subject: adduser: optional support for long options. +110 bytes. closes bug 2134. --- loginutils/adduser.c | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) (limited to 'loginutils/adduser.c') diff --git a/loginutils/adduser.c b/loginutils/adduser.c index a859f4b0c..7b5283e99 100644 --- a/loginutils/adduser.c +++ b/loginutils/adduser.c @@ -66,6 +66,19 @@ static void passwd_wrapper(const char *login) bb_error_msg_and_die("cannot execute %s, you must set password manually", prog); } +#if ENABLE_FEATURE_ADDUSER_LONG_OPTIONS +static const char adduser_longopts[] ALIGN1 = + "home\0" Required_argument "h" + "gecos\0" Required_argument "g" + "shell\0" Required_argument "s" + "ingroup\0" Required_argument "G" + "disabled-password\0" No_argument "D" + "empty-password\0" No_argument "D" + "system\0" No_argument "S" + "no-create-home\0" No_argument "H" + ; +#endif + /* * adduser will take a login_name as its first parameter. * home, shell, gecos: @@ -78,6 +91,10 @@ int adduser_main(int argc, char **argv) const char *usegroup = NULL; FILE *file; +#if ENABLE_FEATURE_ADDUSER_LONG_OPTIONS + applet_long_options = adduser_longopts; +#endif + /* got root? */ if (geteuid()) { bb_error_msg_and_die(bb_msg_perm_denied_are_you_root); -- cgit v1.2.3-55-g6feb