diff options
author | Sergey Stankevich <stankevich@users.noreply.github.com> | 2014-06-18 23:46:27 -0400 |
---|---|---|
committer | Sergey Stankevich <stankevich@users.noreply.github.com> | 2014-06-18 23:46:27 -0400 |
commit | ecc4f46b6992d090250fc977bf1ec739e2a829f5 (patch) | |
tree | a8c5c821db6578c8e15ebcfd81a8f4b755865970 | |
parent | c7ee276831ebb7f9e3bd537e8b4b6943233f27c3 (diff) | |
parent | 3dd709eeaf4b00ca41a3b4e63ec246e6eb96f69e (diff) |
Merge pull request #89 from fadenb/fix/futureparser_compatibility
Quote upper case strings for future parser compatibility
-rw-r--r-- | manifests/install.pp | 4 |
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 ? { |