aboutsummaryrefslogtreecommitdiff
path: root/contrib
diff options
context:
space:
mode:
authorAndrin Brunner <andrin@acloud.one>2022-06-01 16:02:18 +0200
committerAndrin Brunner <andrin@acloud.one>2022-06-01 16:02:18 +0200
commit1933972909bdf2fd7b1d282431c3c6f7b00cfe49 (patch)
treeba16a295c154d79fa2e8e1264e213e8b5bb01829 /contrib
parent70ce77e8d0aab41918b54b2547c902a5463cf798 (diff)
downloadpodman-1933972909bdf2fd7b1d282431c3c6f7b00cfe49.tar.gz
podman-1933972909bdf2fd7b1d282431c3c6f7b00cfe49.tar.bz2
podman-1933972909bdf2fd7b1d282431c3c6f7b00cfe49.zip
Add ExecStop and dependencies to fix shutdown
Signed-off-by: Andrin Brunner <andrin@acloud.one>
Diffstat (limited to 'contrib')
-rw-r--r--contrib/systemd/system/podman-restart.service.in3
1 files changed, 3 insertions, 0 deletions
diff --git a/contrib/systemd/system/podman-restart.service.in b/contrib/systemd/system/podman-restart.service.in
index 1f13e57e1..de0249381 100644
--- a/contrib/systemd/system/podman-restart.service.in
+++ b/contrib/systemd/system/podman-restart.service.in
@@ -2,12 +2,15 @@
Description=Podman Start All Containers With Restart Policy Set To Always
Documentation=man:podman-start(1)
StartLimitIntervalSec=0
+Wants=network-online.target
+After=network-online.target
[Service]
Type=oneshot
RemainAfterExit=true
Environment=LOGGING="--log-level=info"
ExecStart=@@PODMAN@@ $LOGGING start --all --filter restart-policy=always
+ExecStop=/bin/sh -c '@@PODMAN@@ $LOGGING stop $(@@PODMAN@@ container ls --filter restart-policy=always -q)'
[Install]
WantedBy=default.target