diff options
-rw-r--r-- | src/systemctl.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/src/systemctl.c b/src/systemctl.c index 6a7a9bdd6d..444ddf370c 100644 --- a/src/systemctl.c +++ b/src/systemctl.c @@ -1741,10 +1741,8 @@ static int shutdown_parse_argv(int argc, char *argv[]) { } } - if (argc > optind && !streq(argv[optind], "now")) { - log_error("Expected 'now' argument."); - return -EINVAL; - } + if (argc > optind && !streq(argv[optind], "now")) + log_warning("First argument '%s' isn't 'now'. Ignoring.", argv[optind]); /* We ignore the time argument */ if (argc > optind + 1) |