From 3dd709eeaf4b00ca41a3b4e63ec246e6eb96f69e Mon Sep 17 00:00:00 2001 From: Tristan Helmich Date: Wed, 18 Jun 2014 18:13:16 +0200 Subject: Quote upper case strings for future parser compat. https://tickets.puppetlabs.com/browse/PUP-2800 explains the reasoning to quote upper case words. --- manifests/install.pp | 4 ++-- 1 file 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 ? { -- cgit v1.2.3