summaryrefslogtreecommitdiff
path: root/manifests/linux.pp
diff options
context:
space:
mode:
authorMicah Anderson <micah@riseup.net>2013-04-03 13:53:05 -0400
committerMicah Anderson <micah@riseup.net>2013-04-03 13:53:05 -0400
commitfb9fcfaa8bb27cb8ceeaa2090ee28c737c540e40 (patch)
tree919b3d698fa94ddbed75683256c608373e52b243 /manifests/linux.pp
parent8bc54c4b23e35ecf95aefcd652a616fb00e7789b (diff)
qualify variables
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 eb1b10a..972f21c 100644
--- a/manifests/linux.pp
+++ b/manifests/linux.pp
@@ -1,7 +1,7 @@
class stunnel::linux inherits stunnel::base {
- if $ensure_version == '' { $ensure_version = 'installed' }
+ if $stunnel::ensure_version == '' { $stunnel::ensure_version = 'installed' }
package { 'stunnel':
- ensure => $ensure_version
+ ensure => $stunnel::ensure_version
}
}