summaryrefslogtreecommitdiff
path: root/manifests/debian.pp
diff options
context:
space:
mode:
authorMicah Anderson <micah@riseup.net>2013-04-03 13:59:31 -0400
committerMicah Anderson <micah@riseup.net>2013-04-03 14:09:58 -0400
commitb53d574250598178af298c59be957693eaaddb22 (patch)
treed0cb21fa124565840fbcc76644bdeb281b0b9747 /manifests/debian.pp
parentfb9fcfaa8bb27cb8ceeaa2090ee28c737c540e40 (diff)
remove variable defaults, they are handled by the paramterization of the class
make sure template variables are properly looked up.
Diffstat (limited to 'manifests/debian.pp')
-rw-r--r--manifests/debian.pp14
1 files changed, 0 insertions, 14 deletions
diff --git a/manifests/debian.pp b/manifests/debian.pp
index ee2a2f1..eb4d57a 100644
--- a/manifests/debian.pp
+++ b/manifests/debian.pp
@@ -9,20 +9,6 @@ class stunnel::debian inherits stunnel::linux {
pattern => '/usr/bin/stunnel4',
}
- # make the /etc/default/stunnel ENABLED configurable with a variable
- # and default to on
- case $stunnel::startboot {
- '': { $stunnel::startboot = '1' }
- default: { $stunnel::startboot = '1' }
- }
-
- # make the /etc/default/stunnel extra configurable with a variable
- # and default to adding nothing to the default file
- case $stunnel::default_extra {
- '': { $stunnel::default_extra = '' }
- default: { $stunnel::default_extra = '' }
- }
-
file { '/etc/default/stunnel4':
content => template('stunnel/Debian/default'),
require => Package['stunnel4'],