From ce380c2f09d69134505a5c08d38aa7a2ef19292b Mon Sep 17 00:00:00 2001 From: Franck Bui Date: Tue, 31 Aug 2021 15:49:43 +0200 Subject: [PATCH] test: make sure to include all haveged unit files Recent versions of haveged relies on haveged-switch-root.service too. --- test/test-functions | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) 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 }