From: Hendrik Jäger Date: Wed, 23 Aug 2023 09:47:21 +0000 (+0200) Subject: fix: s6-svscanctl is asynchronous so will exit immediately so services were not stopp... X-Git-Url: https://git.netwichtig.de/gitweb/?a=commitdiff_plain;ds=inline;h=e21ec3e2710d8938139a789fdadbdd8c57e5e8e3;p=user%2Fhenk%2Fcode%2Fpuppet%2Fmodules%2Fs6.git fix: s6-svscanctl is asynchronous so will exit immediately so services were not stopped properly --- diff --git a/files/etc/systemd/system/s6.service b/files/etc/systemd/system/s6.service index 1e4b5df..3a4408a 100644 --- a/files/etc/systemd/system/s6.service +++ b/files/etc/systemd/system/s6.service @@ -9,7 +9,7 @@ WantedBy=multi-user.target [Service] Type=simple ExecStart=/usr/bin/s6-svscan -t0 /etc/s6-scandir -ExecStop=/usr/bin/s6-svscanctl -t /etc/s6-scandir ExecReload=/usr/bin/s6-svscanctl -an /etc/s6-scandir Restart=always RestartSec=1 +KillMode=mixed