From 71a6f7538199f571b92e0c9fbb5819f8ce0e0d20 Mon Sep 17 00:00:00 2001 From: Lennart Poettering Date: Fri, 9 Jul 2010 23:05:59 +0200 Subject: [PATCH] install: properly parse --realize=reload --- src/install.c | 2 ++ 1 file changed, 2 insertions(+) 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; -- 2.30.2