From: Lennart Poettering Date: Wed, 27 Feb 2013 17:58:56 +0000 (+0100) Subject: systemctl: fix minimal number of params for new cgroup commands X-Git-Tag: v198~163 X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=commitdiff_plain;h=1f4cadad8ba5bae48ae8169eebe01558ce664ee8;hp=f0c15f288513aa4da012db7497a4aec3f7763ebb;p=elogind.git systemctl: fix minimal number of params for new cgroup commands --- diff --git a/src/systemctl/systemctl.c b/src/systemctl/systemctl.c index a2dbbe82c..c67c6c972 100644 --- a/src/systemctl/systemctl.c +++ b/src/systemctl/systemctl.c @@ -5094,11 +5094,11 @@ static int systemctl_main(DBusConnection *bus, int argc, char *argv[], DBusError { "condreload", MORE, 2, start_unit }, /* For compatibility with ALTLinux */ { "condrestart", MORE, 2, start_unit }, /* For compatibility with RH */ { "isolate", EQUAL, 2, start_unit }, - { "set-cgroup", MORE, 2, set_cgroup }, - { "unset-cgroup", MORE, 2, set_cgroup }, - { "get-cgroup-attr", MORE, 2, get_cgroup_attr }, - { "set-cgroup-attr", MORE, 2, set_cgroup_attr }, - { "unset-cgroup-attr", MORE, 2, set_cgroup }, + { "set-cgroup", MORE, 3, set_cgroup }, + { "unset-cgroup", MORE, 3, set_cgroup }, + { "get-cgroup-attr", MORE, 3, get_cgroup_attr }, + { "set-cgroup-attr", MORE, 4, set_cgroup_attr }, + { "unset-cgroup-attr", MORE, 3, set_cgroup }, { "kill", MORE, 2, kill_unit }, { "is-active", MORE, 2, check_unit_active }, { "check", MORE, 2, check_unit_active },