diff options
-rw-r--r-- | manifests/xen.pp | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/manifests/xen.pp b/manifests/xen.pp index 52e6f6f..5c4fc09 100644 --- a/manifests/xen.pp +++ b/manifests/xen.pp @@ -117,8 +117,12 @@ class xen::dom0::centos inherits xen::dom0::base { } class xen::dom0::debian inherits xen::dom0::base { - package { - "xen-tools": - ensure => present; + case $lsbdistcodename { + lenny: { + package { + "xen-tools": + ensure => "4.1-1~bpo50+1", + } + } } } |