aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--manifests/xen.pp8
1 files changed, 4 insertions, 4 deletions
diff --git a/manifests/xen.pp b/manifests/xen.pp
index a24021a..f59f316 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" = $architecture ? {
- amd64 => xen-linux-system-2.6.26-1-xen-amd64,
- i386 => xen-linux-system-2.6.26-1-xen-686
+ $xen_linux_system = $architecture ? {
+ 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";
}