From b7cf6049a36dfd8e5f3c6420243eb49d348dbd2f Mon Sep 17 00:00:00 2001 From: Michal Schmidt Date: Fri, 22 Feb 2013 09:56:16 +0100 Subject: systemctl: make "systemctl default" use "isolate" job mode "systemctl default" should behave identically to "telinit N" (where N is the corresponding runlevel target number), therefore it should use isolate job mode too. --- src/systemctl/systemctl.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src') diff --git a/src/systemctl/systemctl.c b/src/systemctl/systemctl.c index 509651c1f..0f19c25ce 100644 --- a/src/systemctl/systemctl.c +++ b/src/systemctl/systemctl.c @@ -1598,7 +1598,8 @@ static int start_unit(DBusConnection *bus, char **args) { mode = (streq(args[0], "isolate") || streq(args[0], "rescue") || - streq(args[0], "emergency")) ? "isolate" : arg_job_mode; + streq(args[0], "emergency") || + streq(args[0], "default")) ? "isolate" : arg_job_mode; one_name = table[verb_to_action(args[0])]; -- cgit v1.2.3