diff options
Diffstat (limited to 'src/install.c')
-rw-r--r-- | src/install.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/install.c b/src/install.c index a05002d073..2c57c9b607 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; |