summaryrefslogtreecommitdiff
path: root/manifests/debian.pp
diff options
context:
space:
mode:
authormh <mh@immerda.ch>2009-12-10 21:28:30 +0100
committermh <mh@immerda.ch>2009-12-10 21:28:30 +0100
commit3224ec6a9701b9e9dbeeda433456a980d7e03c1e (patch)
treede52f9075a22b4d8c159be7ab908e2e8abf40745 /manifests/debian.pp
parentedb296154abd61b7621831c2d2f7c09362eefebd (diff)
do we really need to quote the value?
Diffstat (limited to 'manifests/debian.pp')
-rw-r--r--manifests/debian.pp4
1 files changed, 2 insertions, 2 deletions
diff --git a/manifests/debian.pp b/manifests/debian.pp
index 4f9f337..dfa890f 100644
--- a/manifests/debian.pp
+++ b/manifests/debian.pp
@@ -1,10 +1,10 @@
class shorewall::debian inherits shorewall::base {
case $shorewall_startup {
- '': { $shorewall_startup = 1 }
+ '': { $shorewall_startup = "1" }
}
file{'/etc/default/shorewall':
#source => "puppet://$server/modules/shorewall/debian/default",
- content => template("shorewall/debian_default.erb"),
+ content => template("shorewall/debian_default.erb"),
require => Package['shorewall'],
notify => Service['shorewall'],
owner => root, group => 0, mode => 0644;