diff options
author | Micah Anderson <micah@riseup.net> | 2009-02-11 15:35:20 -0500 |
---|---|---|
committer | Micah Anderson <micah@riseup.net> | 2009-02-11 15:35:20 -0500 |
commit | d52b58000faa57f7f83f7e3436eff583dacae4e2 (patch) | |
tree | 5e1d7aefc9d59c2a1693558017e7886af64989c1 | |
parent | 098d675dd457f2cf7cf89280b36430d20a2594d1 (diff) | |
download | puppet-virtual-d52b58000faa57f7f83f7e3436eff583dacae4e2.tar.gz puppet-virtual-d52b58000faa57f7f83f7e3436eff583dacae4e2.tar.bz2 |
try quoting the var
-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 7dce210..357cd42 100644 --- a/manifests/xen.pp +++ b/manifests/xen.pp @@ -85,13 +85,13 @@ class xen::domain::centos inherits xen::domain::base { } class xen::domain::debian inherits xen::domain::base { - $xen-linux-system = ? { + "$xen-linux-system" = ? { amd64 => xen-linux-system-2.6.26-1-xen-amd64, i386 => xen-linux-system-2.6.26-1-xen-686 } package { - $xen-linux-system: + "$xen-linux-system": ensure => present, alias => "xen-linux-system"; } |