summaryrefslogtreecommitdiff
path: root/manifests/polipo.pp
diff options
context:
space:
mode:
authorintrigeri <intrigeri@boum.org>2012-11-11 21:48:58 +0100
committerintrigeri <intrigeri@boum.org>2012-11-11 21:48:58 +0100
commit6255a818641c07b20d7e718eeff5e5f92953bd09 (patch)
tree292c1347662bc22c3b08774a34389d512cd0c10c /manifests/polipo.pp
parent1ee285d39980512b506084368f4f2208aa4d7c1f (diff)
Quote and enclose in braces variables in strings.
Puppet style guide "8. Quoting" reads: "Double quotes should be used when variable interpolation is required. [...] All variables should be enclosed in braces when interpolated in a string."
Diffstat (limited to 'manifests/polipo.pp')
-rw-r--r--manifests/polipo.pp2
1 files changed, 1 insertions, 1 deletions
diff --git a/manifests/polipo.pp b/manifests/polipo.pp
index 8563347..9a8fdb5 100644
--- a/manifests/polipo.pp
+++ b/manifests/polipo.pp
@@ -1,7 +1,7 @@
class tor::polipo {
include ::tor
- case $::operatingsystem {
+ case "${::operatingsystem}" {
'debian': { include tor::polipo::debian }
default: { include tor::polipo::base }
}