From fb9fcfaa8bb27cb8ceeaa2090ee28c737c540e40 Mon Sep 17 00:00:00 2001 From: Micah Anderson Date: Wed, 3 Apr 2013 13:53:05 -0400 Subject: qualify variables --- manifests/debian.pp | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'manifests/debian.pp') diff --git a/manifests/debian.pp b/manifests/debian.pp index 156ef75..ee2a2f1 100644 --- a/manifests/debian.pp +++ b/manifests/debian.pp @@ -11,16 +11,16 @@ class stunnel::debian inherits stunnel::linux { # make the /etc/default/stunnel ENABLED configurable with a variable # and default to on - case $startboot { - '': { $startboot = '1' } - default: { $startboot = '1' } + 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 $default_extra { - '': { $default_extra = '' } - default: { $default_extra = '' } + case $stunnel::default_extra { + '': { $stunnel::default_extra = '' } + default: { $stunnel::default_extra = '' } } file { '/etc/default/stunnel4': -- cgit v1.2.3