diff options
author | Valentin Rothberg <rothberg@redhat.com> | 2021-12-01 09:31:14 +0100 |
---|---|---|
committer | Valentin Rothberg <rothberg@redhat.com> | 2021-12-01 09:41:37 +0100 |
commit | 391248456970e736513428dbaed2b575675fb107 (patch) | |
tree | b796208d249110ca79ae8b8194a6cb81c38c5d39 /test | |
parent | 31bc3586be57f459bc30124ce6dbca98f98836e8 (diff) | |
download | podman-391248456970e736513428dbaed2b575675fb107.tar.gz podman-391248456970e736513428dbaed2b575675fb107.tar.bz2 podman-391248456970e736513428dbaed2b575675fb107.zip |
systemd: replace multi-user with default.target
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.
Backport of commit 9a10e2124bb11027fc71db4c495c116277b8b7e3.
Fixes: #12438
Signed-off-by: Valentin Rothberg <rothberg@redhat.com>
Diffstat (limited to 'test')
-rw-r--r-- | test/e2e/systemd_test.go | 2 | ||||
-rw-r--r-- | test/system/255-auto-update.bats | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/test/e2e/systemd_test.go b/test/e2e/systemd_test.go index 98def3d8f..7212f8843 100644 --- a/test/e2e/systemd_test.go +++ b/test/e2e/systemd_test.go @@ -35,7 +35,7 @@ ExecStart=/usr/bin/podman start -a redis ExecStop=/usr/bin/podman stop -t 10 redis KillMode=process [Install] -WantedBy=multi-user.target +WantedBy=default.target ` }) diff --git a/test/system/255-auto-update.bats b/test/system/255-auto-update.bats index bb4b5c13f..016e646fc 100644 --- a/test/system/255-auto-update.bats +++ b/test/system/255-auto-update.bats @@ -366,7 +366,7 @@ Type=oneshot ExecStart=/usr/bin/podman auto-update [Install] -WantedBy=multi-user.target default.target +WantedBy=default.target EOF echo "podman-auto-update-$cname" >> $SNAME_FILE |