summaryrefslogtreecommitdiff
path: root/manifests/linux.pp
diff options
context:
space:
mode:
authorMicah Anderson <micah@riseup.net>2013-04-03 13:18:26 -0400
committerMicah Anderson <micah@riseup.net>2013-04-03 13:18:26 -0400
commit0bec75e40e5aa4458c960242298ab455fcffc88e (patch)
tree9535121f3fe347cda1c03fc57f4e00907201a73e /manifests/linux.pp
parent6c27f8faf0caef51af5958ad8aa01b3aef4ea2ed (diff)
switch to parameterized classes, changing the variable names as appropriate to remove the redundant stunnel_ prefix
Diffstat (limited to 'manifests/linux.pp')
-rw-r--r--manifests/linux.pp4
1 files changed, 2 insertions, 2 deletions
diff --git a/manifests/linux.pp b/manifests/linux.pp
index b4b99c6..eb1b10a 100644
--- a/manifests/linux.pp
+++ b/manifests/linux.pp
@@ -1,7 +1,7 @@
class stunnel::linux inherits stunnel::base {
- if $stunnel_ensure_version == '' { $stunnel_ensure_version = 'installed' }
+ if $ensure_version == '' { $ensure_version = 'installed' }
package { 'stunnel':
- ensure => $stunnel_ensure_version
+ ensure => $ensure_version
}
}