mirror of
https://github.com/containers/podman.git
synced 2025-06-05 14:06:01 +08:00

* Add podman-restart systemd unit file and add it to podman RPM package * Fix podman start to filter all containers + unit test Signed-off-by: Boaz Shuster <boaz.shuster.github@gmail.com>
16 lines
313 B
Desktop File
16 lines
313 B
Desktop File
[Unit]
|
|
Description=Podman API Service
|
|
Requires=podman.socket
|
|
After=podman.socket
|
|
Documentation=man:podman-system-service(1)
|
|
StartLimitIntervalSec=0
|
|
|
|
[Service]
|
|
Type=exec
|
|
KillMode=process
|
|
Environment=LOGGING="--log-level=info"
|
|
ExecStart=/usr/bin/podman $LOGGING system service
|
|
|
|
[Install]
|
|
WantedBy=multi-user.target
|