diff options
author | mh <mh@immerda.ch> | 2009-12-10 18:13:29 +0100 |
---|---|---|
committer | mh <mh@immerda.ch> | 2009-12-10 18:13:29 +0100 |
commit | 1332fd3e9d340441bd36c9cd617d350b0497ad59 (patch) | |
tree | d77362ec6a6ecdc4d5c33059dd6938daf1326014 /manifests | |
parent | 566cd55dfbfc3ddd9dfed6529803a69526e6fb89 (diff) | |
download | puppet-shorewall-1332fd3e9d340441bd36c9cd617d350b0497ad59.tar.gz puppet-shorewall-1332fd3e9d340441bd36c9cd617d350b0497ad59.tar.bz2 |
initialize variable if not set
Diffstat (limited to 'manifests')
-rw-r--r-- | manifests/debian.pp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/manifests/debian.pp b/manifests/debian.pp index d2ba35d..4f9f337 100644 --- a/manifests/debian.pp +++ b/manifests/debian.pp @@ -1,4 +1,7 @@ class shorewall::debian inherits shorewall::base { + case $shorewall_startup { + '': { $shorewall_startup = 1 } + } file{'/etc/default/shorewall': #source => "puppet://$server/modules/shorewall/debian/default", content => template("shorewall/debian_default.erb"), |