mirror of
https://gitlab.freedesktop.org/NetworkManager/NetworkManager.git
synced 2026-06-19 04:18:30 +02:00
systemd: set KillMode=process
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
This commit is contained in:
parent
e78c3e83d2
commit
1d89bc0004
1 changed files with 2 additions and 0 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue