mirror of
https://github.com/containers/podman.git
synced 2025-05-28 21:46:51 +08:00

Replace `multi-user.target` with `default.target` across the code base. It seems like the multi-user one is not available for (rootless) users on F35 anymore is causing issues in all kinds of ways, for instance, enabling the podman.service or generated systemd units. Fixes: #12438 Signed-off-by: Valentin Rothberg <rothberg@redhat.com>
16 lines
305 B
SYSTEMD
16 lines
305 B
SYSTEMD
[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=@@PODMAN@@ $LOGGING system service
|
|
|
|
[Install]
|
|
WantedBy=default.target
|