From: Lennart Poettering Date: Tue, 8 Mar 2011 00:47:30 +0000 (+0100) Subject: systemctl: when forwarding is-enabled to chkconfig hardcode runlevel 3 X-Git-Tag: v20~8 X-Git-Url: https://err.no/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=83310f162d2a78913b2748aaa5ffb1ae8226484f;p=systemd systemctl: when forwarding is-enabled to chkconfig hardcode runlevel 3 --- diff --git a/src/systemctl.c b/src/systemctl.c index f5a87fc7..23e65975 100644 --- a/src/systemctl.c +++ b/src/systemctl.c @@ -4072,7 +4072,7 @@ static int install_info_apply(const char *verb, LookupPaths *paths, InstallInfo argv[1] = file_name_from_path(sysv); argv[2] = streq(verb, "enable") ? "on" : - streq(verb, "disable") ? "off" : NULL; + streq(verb, "disable") ? "off" : "--level=3"; log_info("Executing %s %s %s", argv[0], argv[1], strempty(argv[2]));