Merge pull request #12950 from edsantiago/systemd_250

System tests: fix for new systemd on rawhide
This commit is contained in:
OpenShift Merge Robot
2022-01-20 15:01:29 -05:00
committed by GitHub

View File

@ -373,8 +373,10 @@ EOF
systemctl enable --now podman-auto-update-$cname.timer
systemctl list-timers --all
# While systemd v245 and later uses 'Finished', older versions uses 'Started' for oneshot services
local expect='(Finished|Started) Podman auto-update testing service'
# systemd <245 displays 'Started Podman auto-update ...'
# systemd 245 - <250 displays 'Finished Podman auto-update ...'
# systemd 250 - ???? displays 'Finished <unit name> - Podman auto-...'
local expect='(Started|Finished.*) Podman auto-update testing service'
local failed_start=failed
local count=0
while [ $count -lt 120 ]; do