mirror of
https://github.com/systemd/systemd.git
synced 2025-03-21 02:50:18 +03:00
systemctl: make condrestart equivalent to try-restart
"condrestart" should be equivalent to "try-restart", i.e. it should be translated into "TryRestartUnit". See http://fedoraproject.org/wiki/Packaging:SysVInitScript#condrestart_and_try-restart Fixes https://bugzilla.redhat.com/show_bug.cgi?id=635780
This commit is contained in:
parent
f2fcd59ffa
commit
aa5939a3ba
@ -1257,11 +1257,11 @@ static int start_unit(DBusConnection *bus, char **args, unsigned n) {
|
||||
streq(args[0], "stop") ? "StopUnit" :
|
||||
streq(args[0], "reload") ? "ReloadUnit" :
|
||||
streq(args[0], "restart") ? "RestartUnit" :
|
||||
streq(args[0], "try-restart") ? "TryRestartUnit" :
|
||||
streq(args[0], "try-restart") ||
|
||||
streq(args[0], "condrestart") ? "TryRestartUnit" :
|
||||
streq(args[0], "reload-or-restart") ? "ReloadOrRestartUnit" :
|
||||
streq(args[0], "reload-or-try-restart") ||
|
||||
streq(args[0], "force-reload") ||
|
||||
streq(args[0], "condrestart") ? "ReloadOrTryRestartUnit" :
|
||||
streq(args[0], "force-reload") ? "ReloadOrTryRestartUnit" :
|
||||
"StartUnit";
|
||||
|
||||
mode =
|
||||
|
Loading…
x
Reference in New Issue
Block a user