From: Franck Bui Date: Tue, 31 Aug 2021 13:49:43 +0000 (+0200) Subject: test: make sure to include all haveged unit files X-Git-Tag: v250-rc1~743 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=ce380c2f09d69134505a5c08d38aa7a2ef19292b;p=thirdparty%2Fsystemd.git test: make sure to include all haveged unit files Recent versions of haveged relies on haveged-switch-root.service too. --- diff --git a/test/test-functions b/test/test-functions index a2b92aeba8d..5457f9e7262 100644 --- a/test/test-functions +++ b/test/test-functions @@ -1431,12 +1431,14 @@ install_plymouth() { } install_haveged() { - # If haveged is installed and probably included in initrd, it needs to be + # If haveged is installed, it's probably included in initrd and needs to be # installed in the image too. if [ -x /usr/sbin/haveged ]; then dinfo "Install haveged files" inst /usr/sbin/haveged - inst /usr/lib/systemd/system/haveged.service + for u in /usr/lib/systemd/system/haveged*; do + inst $u + done fi }