summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTristan Helmich <tristan.helmich@mayflower.de>2014-06-18 18:13:16 +0200
committerTristan Helmich <tristan.helmich@mayflower.de>2014-06-18 18:13:16 +0200
commit3dd709eeaf4b00ca41a3b4e63ec246e6eb96f69e (patch)
tree105746b1910afad8115153e565d031ac5ebdce0e
parent4c21614ec7b05c6c69760ace849ef3b7e54ba750 (diff)
Quote upper case strings for future parser compat.
https://tickets.puppetlabs.com/browse/PUP-2800 explains the reasoning to quote upper case words.
-rw-r--r--manifests/install.pp4
1 files changed, 2 insertions, 2 deletions
diff --git a/manifests/install.pp b/manifests/install.pp
index 1c2cb0b..a8d7d36 100644
--- a/manifests/install.pp
+++ b/manifests/install.pp
@@ -22,8 +22,8 @@ class python::install {
}
$pythondev = $::osfamily ? {
- RedHat => "${python}-devel",
- Debian => "${python}-dev"
+ 'RedHat' => "${python}-devel",
+ 'Debian' => "${python}-dev"
}
$dev_ensure = $python::dev ? {