From: Lennart Poettering Date: Fri, 9 Jul 2010 21:05:59 +0000 (+0200) Subject: install: properly parse --realize=reload X-Git-Tag: v3~73 X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=commitdiff_plain;h=71a6f7538199f571b92e0c9fbb5819f8ce0e0d20;hp=f8e1755297387e2969a902be22ee201cc506efa2;p=elogind.git install: properly parse --realize=reload --- diff --git a/src/install.c b/src/install.c index a05002d07..2c57c9b60 100644 --- a/src/install.c +++ b/src/install.c @@ -148,6 +148,8 @@ static int parse_argv(int argc, char *argv[]) { arg_realize = REALIZE_MAYBE; else if (streq(optarg, "yes")) arg_realize = REALIZE_YES; + else if (streq(optarg, "reload")) + arg_realize = REALIZE_RELOAD; else { log_error("Invalid --realize argument %s", optarg); return -EINVAL;