diff options
author | Jouke Witteveen <j.witteveen@gmail.com> | 2012-09-24 22:18:11 +0200 |
---|---|---|
committer | Jouke Witteveen <j.witteveen@gmail.com> | 2012-09-24 22:18:11 +0200 |
commit | 95489893245a5ffedcb217c65b04bcab46511e5f (patch) | |
tree | 32fbbdee9c68b9f8728da743f445722571235228 | |
parent | 5e1acbdb00f38363d05845c9393d7c789fe9f598 (diff) | |
download | netctl-95489893245a5ffedcb217c65b04bcab46511e5f.tar.gz netctl-95489893245a5ffedcb217c65b04bcab46511e5f.tar.xz |
Workaround systemd shutdown bug
systemd does not deal with the combination
Type=oneshot
RemainAfterExit=yes
correctly: systemd bug 54041.
-rw-r--r-- | systemd/netcfg.service | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/systemd/netcfg.service b/systemd/netcfg.service index e9dcfbc..f400be0 100644 --- a/systemd/netcfg.service +++ b/systemd/netcfg.service @@ -8,6 +8,7 @@ Type=oneshot RemainAfterExit=yes ExecStart=/usr/bin/netcfg-daemon start ExecStop=/usr/bin/netcfg-daemon stop +KillMode=none [Install] WantedBy=multi-user.target |