mirror of
https://github.com/containers/podman.git
synced 2025-06-06 06:44:53 +08:00

the paths and instructions for running the new api via systemd needed updates due to a change in the command. Signed-off-by: Brent Baude <bbaude@redhat.com>
18 lines
361 B
Desktop File
18 lines
361 B
Desktop File
[Unit]
|
|
Description=Podman API Service
|
|
Requires=podman.socket
|
|
After=podman.socket
|
|
Documentation=man:podman-api(1)
|
|
StartLimitIntervalSec=0
|
|
|
|
[Service]
|
|
Type=oneshot
|
|
Environment=REGISTRIES_CONFIG_PATH=/etc/containers/registries.conf
|
|
ExecStart=/usr/bin/podman system service
|
|
TimeoutStopSec=30
|
|
KillMode=process
|
|
|
|
[Install]
|
|
WantedBy=multi-user.target
|
|
Also=podman.socket
|