diff options
author | Micah Anderson <micah@riseup.net> | 2012-02-02 12:12:43 -0500 |
---|---|---|
committer | Micah Anderson <micah@riseup.net> | 2012-02-02 12:12:43 -0500 |
commit | 59f7ba6d75060a13c5dfba9fba92b595419099d2 (patch) | |
tree | 9e25f1c597c218427868a480482f3025f7ae698a /manifests | |
parent | 45f951dac124333c30acdd7b18b4f8a0d224c480 (diff) | |
download | puppet-virtual-59f7ba6d75060a13c5dfba9fba92b595419099d2.tar.gz puppet-virtual-59f7ba6d75060a13c5dfba9fba92b595419099d2.tar.bz2 |
workaround for http://projects.puppetlabs.com/issues/11511
Diffstat (limited to 'manifests')
-rw-r--r-- | manifests/xen.pp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/manifests/xen.pp b/manifests/xen.pp index c5caa6c..96200ac 100644 --- a/manifests/xen.pp +++ b/manifests/xen.pp @@ -96,8 +96,8 @@ class xen::domain::debian inherits xen::domain::base { } "squeeze": { $xen_linux_system = $architecture ? { - amd64 => "xen-linux-system-2.6.32-5-xen-amd64", - i386 => "xen-linux-system-2.6.32-5-xen-686" + 'amd64','x86_64' => "xen-linux-system-2.6.32-5-xen-amd64", + 'i386' => "xen-linux-system-2.6.32-5-xen-686" } } } |