aboutsummaryrefslogtreecommitdiff
path: root/manifests
diff options
context:
space:
mode:
authorPietro Ferrari <pietro@riseup.net>2009-03-04 12:50:33 -0800
committerPietro Ferrari <pietro@riseup.net>2009-03-04 12:50:33 -0800
commit892d869bd31da353749029ce453b469e2dabf58c (patch)
treebed8f088e642b0ff7c406c95eb000a00780d5c97 /manifests
parent23597619de1e3ae21aefec1a8f8157dc0416cca4 (diff)
downloadpuppet-virtual-892d869bd31da353749029ce453b469e2dabf58c.tar.gz
puppet-virtual-892d869bd31da353749029ce453b469e2dabf58c.tar.bz2
use xen tools backport if in lenny
Diffstat (limited to 'manifests')
-rw-r--r--manifests/xen.pp10
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",
+ }
+ }
}
}