summaryrefslogtreecommitdiff
path: root/manifests/polipo/debian.pp
diff options
context:
space:
mode:
authorintrigeri <intrigeri@boum.org>2012-11-11 21:43:03 +0100
committerintrigeri <intrigeri@boum.org>2012-11-11 21:43:03 +0100
commit1ee285d39980512b506084368f4f2208aa4d7c1f (patch)
tree46cf0f98e6117883663bf972a1e5f0346c819485 /manifests/polipo/debian.pp
parent955c46180a855eb841886d85fd3691cfe471d8cf (diff)
Use single-quotes for strings that do not contain variables.
Puppet style guide, section "8. Quoting", reads: "All strings that do not contain variables should be enclosed in single quotes."
Diffstat (limited to 'manifests/polipo/debian.pp')
-rw-r--r--manifests/polipo/debian.pp6
1 files changed, 3 insertions, 3 deletions
diff --git a/manifests/polipo/debian.pp b/manifests/polipo/debian.pp
index 1986119..0a8aa93 100644
--- a/manifests/polipo/debian.pp
+++ b/manifests/polipo/debian.pp
@@ -1,12 +1,12 @@
class tor::polipo::debian inherits tor::polipo::base {
# TODO: restore file to original state after the following bug is solved:
# http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=580434
- file { "/etc/cron.daily/polipo":
+ file { '/etc/cron.daily/polipo':
ensure => present,
owner => root,
group => root,
mode => 0755,
- require => Package["polipo"],
- source => "puppet:///modules/tor/polipo/polipo.cron",
+ require => Package['polipo'],
+ source => 'puppet:///modules/tor/polipo/polipo.cron',
}
}