Fix thinko in previous commit
authorAurelien Jarno <aurelien@aurel32.net>
Fri, 5 Apr 2019 20:39:21 +0000 (22:39 +0200)
committerAurelien Jarno <aurelien@aurel32.net>
Fri, 5 Apr 2019 20:39:21 +0000 (22:39 +0200)
modules/rng_tools/manifests/init.pp

index d2c8dac..60eb7c0 100644 (file)
@@ -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
                }