From: Pietro Ferrari Date: Wed, 4 Mar 2009 20:50:33 +0000 (-0800) Subject: use xen tools backport if in lenny X-Git-Url: https://gitweb.fluxo.info/?a=commitdiff_plain;h=892d869bd31da353749029ce453b469e2dabf58c;p=puppet-virtual.git use xen tools backport if in lenny --- 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", + } + } } }