]> git.proxmox.com Git - systemd.git/commitdiff
d/t/boot-smoke: check for NetworkManager instead of D-Bus activated polkitd
authorMichael Biebl <biebl@debian.org>
Tue, 20 Aug 2019 22:06:30 +0000 (00:06 +0200)
committerMichael Biebl <biebl@debian.org>
Tue, 20 Aug 2019 22:11:44 +0000 (00:11 +0200)
polkit.service is started on-demand via D-Bus activation. This means it
is not a good indicator if a boot was successful. Instead check if
NetworkManager is running as it is started via multi-user.target.

Closes: #934992
debian/tests/boot-smoke

index db891970102b845e4d4a8ef1957870bba33ebab2..821c84243cac05b708457d9240bf84a2c43f1afc 100755 (executable)
@@ -74,8 +74,8 @@ else
         fail "found connection timeout in journal for this boot"
     fi
 
-    echo "checking that polkitd runs"
-    pidof polkitd || fail "polkitd was not running"
+    echo "checking that NetworkManager runs"
+    pidof NetworkManager || fail "NetworkManager was not running"
 fi
 
 if [ "$AUTOPKGTEST_REBOOT_MARK" -ge 5 ]; then