diff options
author | Lennart Poettering <lennart@poettering.net> | 2010-07-23 05:24:24 +0200 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2010-07-23 05:24:24 +0200 |
commit | 85e5760d4ffe99d578caf085ca0608b2bb2d4889 (patch) | |
tree | 6149f201bcf41c5283efb365e5b24914999503a0 /src/install.c | |
parent | ea4a240dc2e70adcb39704542b1422b1608e76e6 (diff) |
install: default to minimal realization mode
Diffstat (limited to 'src/install.c')
-rw-r--r-- | src/install.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/install.c b/src/install.c index 751d52b648..2d6316aa8f 100644 --- a/src/install.c +++ b/src/install.c @@ -156,7 +156,7 @@ static int parse_argv(int argc, char *argv[]) { realize_switch = true; if (!optarg) - arg_realize = REALIZE_MAYBE; + arg_realize = REALIZE_MINIMAL; else if (streq(optarg, "no")) arg_realize = REALIZE_NO; else if (streq(optarg, "minimal")) @@ -206,7 +206,7 @@ static int parse_argv(int argc, char *argv[]) { arg_action = ACTION_REALIZE; if (!realize_switch) - arg_realize = REALIZE_MAYBE; + arg_realize = REALIZE_MINIMAL; } else { log_error("Unknown verb %s.", argv[optind]); return -EINVAL; |