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: https://err.no/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=71a6f7538199f571b92e0c9fbb5819f8ce0e0d20;p=systemd install: properly parse --realize=reload --- diff --git a/src/install.c b/src/install.c index a05002d0..2c57c9b6 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;