diff --git a/hack/test-templates.sh b/hack/test-templates.sh index aebbc3957e3..18005c9c36b 100755 --- a/hack/test-templates.sh +++ b/hack/test-templates.sh @@ -41,7 +41,6 @@ CONTAINER_ENGINE="nerdctl" declare -A CHECKS=( ["proxy-settings"]="1" ["systemd"]="1" - ["systemd-strict"]="1" ["mount-home"]="1" ["container-engine"]="1" ["restart"]="1" @@ -80,12 +79,6 @@ case "$NAME" in ERROR "File \"$FILE\" is not testable with this script" exit 1 ;; -"fedora") - WARNING "Relaxing systemd tests for fedora (For avoiding CI failure)" - # CI failure: - # ● run-r2b459797f5b04262bfa79984077a65c7.service loaded failed failed /usr/bin/systemctl start man-db-cache-update - CHECKS["systemd-strict"]= - ;; "test-misc") CHECKS["disk"]=1 CHECKS["snapshot-online"]="1" @@ -319,11 +312,7 @@ if [[ -n ${CHECKS["systemd"]} ]]; then if ! limactl shell "$NAME" systemctl is-system-running --wait; then ERROR '"systemctl is-system-running" failed' diagnose "$NAME" - if [[ -z ${CHECKS["systemd-strict"]} ]]; then - INFO 'Ignoring "systemctl is-system-running" failure' - else - exit 1 - fi + exit 1 fi set +x fi