From 425ba87380cab22ce7ff94c2a8d9afd354c0e37f Mon Sep 17 00:00:00 2001 From: Buddy Sandidge Date: Fri, 26 May 2023 12:47:10 -0700 Subject: [PATCH] Add podman systemd service --- dot_config/systemd/user/podman.service.tmpl | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 dot_config/systemd/user/podman.service.tmpl diff --git a/dot_config/systemd/user/podman.service.tmpl b/dot_config/systemd/user/podman.service.tmpl new file mode 100644 index 0000000..92b47c3 --- /dev/null +++ b/dot_config/systemd/user/podman.service.tmpl @@ -0,0 +1,12 @@ +{{ if lookPath "podman" -}} +[Unit] +Description=Podman service + +[Service] +Type=simple +ExecStart={{ lookPath "podman" }} system service --time 0 +Restart=always + +[Install] +WantedBy=default.target +{{- end }}