summaryrefslogtreecommitdiff
path: root/src/systemd/podman.service
diff options
context:
space:
mode:
authorChristian Breunig <christian@breunig.cc>2024-09-06 17:57:24 +0200
committerMergify <37929162+mergify[bot]@users.noreply.github.com>2024-09-09 13:25:42 +0000
commitaface21a83f54e0f1a60549589d6ad2caa40f473 (patch)
treee4325bb1cd12ca10e2f2862e61ebe18e086f658e /src/systemd/podman.service
parent9a92c365faf9ef6a8ce30e003d05dc9a52d9b788 (diff)
downloadvyos-1x-aface21a83f54e0f1a60549589d6ad2caa40f473.tar.gz
vyos-1x-aface21a83f54e0f1a60549589d6ad2caa40f473.zip
container: T6702: re-add missing UNIX API socketmergify/bp/circinus/pr-4034
During podman upgrade and a build from the original source the UNIX socket definition for systemd got lost in translation. This commit re-adds the UNIX socket which is started on boot to interact with Podman. Example: curl --unix-socket /run/podman/podman.sock -H 'content-type: application/json' \ -sf http://localhost/containers/json (cherry picked from commit f67e217f2716937115a3bdf6d316b172bbec75e5)
Diffstat (limited to 'src/systemd/podman.service')
-rw-r--r--src/systemd/podman.service16
1 files changed, 16 insertions, 0 deletions
diff --git a/src/systemd/podman.service b/src/systemd/podman.service
new file mode 100644
index 000000000..20a16304b
--- /dev/null
+++ b/src/systemd/podman.service
@@ -0,0 +1,16 @@
+[Unit]
+Description=Podman API Service
+Requires=podman.socket
+After=podman.socket
+Documentation=man:podman-system-service(1)
+StartLimitIntervalSec=0
+
+[Service]
+Delegate=true
+Type=exec
+KillMode=process
+Environment=LOGGING="--log-level=info"
+ExecStart=/usr/bin/podman $LOGGING system service
+
+[Install]
+WantedBy=default.target