aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMicah Anderson <micah@riseup.net>2009-02-11 15:35:20 -0500
committerMicah Anderson <micah@riseup.net>2009-02-11 15:35:20 -0500
commitd52b58000faa57f7f83f7e3436eff583dacae4e2 (patch)
tree5e1d7aefc9d59c2a1693558017e7886af64989c1
parent098d675dd457f2cf7cf89280b36430d20a2594d1 (diff)
downloadpuppet-virtual-d52b58000faa57f7f83f7e3436eff583dacae4e2.tar.gz
puppet-virtual-d52b58000faa57f7f83f7e3436eff583dacae4e2.tar.bz2
try quoting the var
-rw-r--r--manifests/xen.pp4
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";
}