From 53b6e72a45a0fb7632251242893c3c3ce794a6b0 Mon Sep 17 00:00:00 2001 From: Peter Palfrader Date: Sat, 7 Sep 2019 22:31:56 +0200 Subject: [PATCH] Remove irqbalance on buster --- modules/debian_org/manifests/init.pp | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) 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 } } -- 2.20.1