diff options
Diffstat (limited to 'manifests')
| -rw-r--r-- | manifests/subsystems/utils/network.pp | 11 | ||||
| -rw-r--r-- | manifests/subsystems/utils/security.pp | 5 | 
2 files changed, 6 insertions, 10 deletions
diff --git a/manifests/subsystems/utils/network.pp b/manifests/subsystems/utils/network.pp index 976e3b5..136f1c7 100644 --- a/manifests/subsystems/utils/network.pp +++ b/manifests/subsystems/utils/network.pp @@ -41,13 +41,6 @@ class utils::network inherits utils::network::minimal {      ensure => installed,    } -  # Custom: might not be available in the official repositories -  if $nodo_use_custom_packages == true { -    package { [ 'torchat' ]: -      ensure => installed, -    } -  } -    # Squeeze (or newer) packages    if $lsbdistcodename != 'lenny' {      package { [ 'xul-ext-monkeysphere', 'chromium-browser', 'libical-parser-perl', @@ -74,6 +67,10 @@ class utils::network inherits utils::network::minimal {                  'xul-ext-requestpolicy' ]:        ensure => installed,      } + +    package { [ 'torchat' ]: +      ensure => installed, +    }    }    # Lenny only diff --git a/manifests/subsystems/utils/security.pp b/manifests/subsystems/utils/security.pp index c3e68a3..ba332f3 100644 --- a/manifests/subsystems/utils/security.pp +++ b/manifests/subsystems/utils/security.pp @@ -5,9 +5,8 @@ class utils::security {      ensure => installed,    } -  # Custom: might not be available in the official repositories -  if $nodo_use_custom_packages == true { -    package { [ 'kedpm' ]: +  if $lsbdistcodename != 'squeeze' { +    package { [ 'kedpm', 'kedpm-gtk' ]:        ensure => installed,      }    }  | 
