mirror of
https://github.com/containers/podman.git
synced 2025-08-26 03:01:31 +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>
14 lines
331 B
SYSTEMD
14 lines
331 B
SYSTEMD
[Unit]
|
|
Description=Podman Start All Containers With Restart Policy Set To Always
|
|
Documentation=man:podman-start(1)
|
|
StartLimitIntervalSec=0
|
|
|
|
[Service]
|
|
Type=oneshot
|
|
RemainAfterExit=true
|
|
Environment=LOGGING="--log-level=info"
|
|
ExecStart=@@PODMAN@@ $LOGGING start --all --filter restart-policy=always
|
|
|
|
[Install]
|
|
WantedBy=default.target
|