Don't install haveged for modular tests (yet)

It's not there, I don't think.
This commit is contained in:
Adam Williamson 2017-11-06 18:01:23 -08:00
parent 72395f1f67
commit bd27cc69d8
1 changed files with 4 additions and 2 deletions

View File

@ -16,8 +16,10 @@ sub run {
repo_setup() unless get_var("UPGRADE");
# we need a lot of entropy for this, and we don't care how good
# it is, so let's use haveged
assert_script_run 'dnf -y install haveged', 300;
assert_script_run 'systemctl start haveged.service';
unless (get_var("MODULAR")) {
assert_script_run 'dnf -y install haveged', 300;
assert_script_run 'systemctl start haveged.service';
}
# read DNS server IPs from host's /etc/resolv.conf for passing to
# rolectl
my @forwards = get_host_dns();