ansible-edda/playbooks/roles/services/deploy/dash/templates/systemd/pod-dash.service

34 lines
1.4 KiB
Desktop File

[Unit]
Description=Podman pod-dash.service
Documentation=man:podman-generate-systemd(1)
Wants=network.target
After=network-online.target
Wants=container-dash-grafana.service
Before=container-dash-grafana.service
OnFailure=status-mail@%n.service
[Service]
Environment=PODMAN_SYSTEMD_UNIT=%n
Restart=on-failure
TimeoutStopSec=70
ExecStartPre=/bin/rm -f %t/pod-dash.pid %t/pod-dash.pod-id
ExecStartPre=/usr/bin/podman pod create \
--infra-conmon-pidfile %t/pod-dash.pid \
--pod-id-file %t/pod-dash.pod-id \
--name=dash \
--network=none \
--replace
ExecStart=/usr/bin/podman pod start --pod-id-file %t/pod-dash.pod-id
ExecStartPost=/usr/bin/sh -c 'podman inspect --format "{% raw %}{{ .State.Pid }}{% endraw %}" $(podman inspect --format "{% raw %}{{ .InfraContainerID }}{% endraw %}" dash) > {{ services_containers_directory }}/pod-dash/pidfile'
ExecStartPost=/usr/bin/sudo /usr/sbin/ifdown --ignore-errors veth-dash
ExecStartPost=/usr/bin/sudo /usr/sbin/ifup veth-dash
ExecStop=/usr/bin/sudo /usr/sbin/ifdown --ignore-errors veth-dash
ExecStop=/usr/bin/podman pod stop --ignore --pod-id-file %t/pod-dash.pod-id -t 10
ExecStopPost=/usr/bin/podman pod rm --ignore -f --pod-id-file %t/pod-dash.pod-id
ExecStopPost=/bin/rm -f {{ services_containers_directory }}/pod-dash/pidfile
PIDFile=%t/pod-dash.pid
Type=forking
[Install]
WantedBy=multi-user.target default.target