From: Aurelien Jarno Date: Fri, 5 Apr 2019 20:39:21 +0000 (+0200) Subject: Fix thinko in previous commit X-Git-Url: https://git.adam-barratt.org.uk/?a=commitdiff_plain;h=5dd7671ad49555aa7c3b24e5d3fe40cddf1b38e6;p=mirror%2Fdsa-puppet.git Fix thinko in previous commit --- diff --git a/modules/rng_tools/manifests/init.pp b/modules/rng_tools/manifests/init.pp index d2c8dace3..60eb7c03c 100644 --- a/modules/rng_tools/manifests/init.pp +++ b/modules/rng_tools/manifests/init.pp @@ -1,5 +1,5 @@ class rng_tools { - if $has_dev_hwrng and !($::is_virtual and $::virtual == 'kvm' and $::debarchitecture == 's390x' and (versioncmp($::lsbmajdistrelease, '9') >= 0)) { + if $has_dev_hwrng and $::debarchitecture != 's390x' and !($::is_virtual and $::virtual == 'kvm' and (versioncmp($::lsbmajdistrelease, '9') >= 0)) { package { 'rng-tools': ensure => installed }