From: Stephen Gran Date: Sat, 5 Feb 2011 12:21:48 +0000 (+0000) Subject: only try to install cqparrayd in lenny X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=e9495b9daf8ec598b4e5b2d1bd34d9ba18b99a50;hp=e5d618ec4700d099264b4984f9ea4668296e5f45;p=dsa-puppet.git only try to install cqparrayd in lenny Signed-off-by: Stephen Gran --- diff --git a/modules/debian-org/manifests/init.pp b/modules/debian-org/manifests/init.pp index 76cb4758..123a0e85 100644 --- a/modules/debian-org/manifests/init.pp +++ b/modules/debian-org/manifests/init.pp @@ -137,9 +137,16 @@ class debian-proliant inherits debian-org { package { "hpacucli": ensure => installed; "hp-health": ensure => installed; - "cpqarrayd": ensure => installed; "arrayprobe": ensure => installed; } + case extractnodeinfo($nodeinfo, 'squeeze') { + true: {} + default: { + package { + "cpqarrayd": ensure => installed; + } + } + } case $debarchitecture { "amd64": { package { "lib32gcc1": ensure => installed; }