From: Peter Palfrader Date: Sat, 7 Sep 2019 20:31:56 +0000 (+0200) Subject: Remove irqbalance on buster X-Git-Url: https://git.adam-barratt.org.uk/?a=commitdiff_plain;h=53b6e72a45a0fb7632251242893c3c3ce794a6b0;p=mirror%2Fdsa-puppet.git Remove irqbalance on buster --- diff --git a/modules/debian_org/manifests/init.pp b/modules/debian_org/manifests/init.pp index 0c4c493e4..93905c4ba 100644 --- a/modules/debian_org/manifests/init.pp +++ b/modules/debian_org/manifests/init.pp @@ -323,10 +323,13 @@ class debian_org { source => 'puppet:///modules/debian_org/root-dotfiles/vimrc', } - if versioncmp($::lsbmajdistrelease, '9') >= 0 { # older puppets do facts as strings. + if versioncmp($::lsbmajdistrelease, '9') == 0 { # older puppets do facts as strings. if $::processorcount > 1 { package { 'irqbalance': ensure => installed } } + } else { + # 926967 drops the recommendation on irqbalance in Buster + package { 'irqbalance': ensure => purged } }