diff options
author | Evgeny Vereshchagin <evvers@ya.ru> | 2015-11-11 00:03:24 +0000 |
---|---|---|
committer | Evgeny Vereshchagin <evvers@ya.ru> | 2015-11-11 00:03:24 +0000 |
commit | 75fbd19388badbdd68f7e4e0ae0f723501629c86 (patch) | |
tree | 6b9e286a9a50962aee05c5bdda3f67304770de0e /src/systemctl/systemctl.c | |
parent | e3c4a681db0b7004904b95d55fd1a443161c9397 (diff) |
systemctl: fix cancel
http://www.freedesktop.org/software/systemd/man/systemctl.html#cancel%20JOB...
> If no job ID is specified, cancel all pending jobs
Diffstat (limited to 'src/systemctl/systemctl.c')
-rw-r--r-- | src/systemctl/systemctl.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/systemctl/systemctl.c b/src/systemctl/systemctl.c index 70871cf3e6..85deb4a761 100644 --- a/src/systemctl/systemctl.c +++ b/src/systemctl/systemctl.c @@ -7439,7 +7439,7 @@ static int systemctl_main(int argc, char *argv[]) { { "list-jobs", VERB_ANY, VERB_ANY, 0, list_jobs }, { "list-machines", VERB_ANY, VERB_ANY, 0, list_machines }, { "clear-jobs", VERB_ANY, 1, 0, daemon_reload }, - { "cancel", 2, VERB_ANY, 0, cancel_job }, + { "cancel", VERB_ANY, VERB_ANY, 0, cancel_job }, { "start", 2, VERB_ANY, 0, start_unit }, { "stop", 2, VERB_ANY, 0, start_unit }, { "condstop", 2, VERB_ANY, 0, start_unit }, /* For compatibility with ALTLinux */ |