fix: unbreak --install option caused by wrong --manage-users parameter 31/34331/1
authorJan Cybulski <j.cybulski@samsung.com>
Fri, 23 Jan 2015 11:22:23 +0000 (12:22 +0100)
committerJan Cybulski <j.cybulski@samsung.com>
Fri, 23 Jan 2015 11:24:27 +0000 (12:24 +0100)
--manage-users option is not required.

Change-Id: I523a11ddc0e4925059b7759c009d8f9c129f3ae9
Signed-off-by: Jan Cybulski <j.cybulski@samsung.com>
src/cmd/security-manager-cmd.cpp

index e489d6c..a1a205e 100644 (file)
@@ -59,7 +59,7 @@ static po::options_description getGenericOptions()
     opts.add_options()
          ("help,h", "produce help message")
          ("install,i", "install an application")
-         ("manage-users,m", po::value<std::string>()->required(), "add or remove user, parameter is 'a' or 'add' (for add) and 'r' or 'remove' (for remove)")
+         ("manage-users,m", po::value<std::string>(), "add or remove user, parameter is 'a' or 'add' (for add) and 'r' or 'remove' (for remove)")
          ;
     return opts;
 }