systemd: set KillMode=process
authorDan Winship <danw@gnome.org>
Fri, 4 Jan 2013 16:53:03 +0000 (11:53 -0500)
committerDan Winship <danw@gnome.org>
Fri, 4 Jan 2013 16:53:03 +0000 (11:53 -0500)
By default, when shutting NM down, systemd will kill everything in its
cgroup. But this can cause problems (eg, NM thinking that dhclient
crashed and then taking down an interface that it would otherwise have
left up). Fix this by setting KillMode=process, which tells systemd to
only kill NM itself, and let NM kill its children.

https://bugzilla.redhat.com/show_bug.cgi?id=876218

data/NetworkManager.service.in

index 9a5f125..16b53b6 100644 (file)
@@ -12,6 +12,8 @@ ExecStart=@sbindir@/NetworkManager --no-daemon
 # with LOG_PERROR when run in foreground. But systemd redirects stderr to
 # syslog by default, which results in logging each message twice.
 StandardError=null
+# NM doesn't want systemd to kill its children for it
+KillMode=process
 
 [Install]
 WantedBy=multi-user.target