summaryrefslogtreecommitdiff
path: root/manifests
diff options
context:
space:
mode:
authorMicah Anderson <micah@riseup.net>2009-10-02 16:08:15 -0400
committerMicah Anderson <micah@riseup.net>2009-10-02 16:08:15 -0400
commit1738214e027c0496125d7082620539e113162f44 (patch)
tree311d52a922e9936b5e2092d10eff5c0b4e50a15f /manifests
parent5fd1d15a8fd0517218878b269964b8286ef360c5 (diff)
fixed missing $ on variables
Diffstat (limited to 'manifests')
-rw-r--r--manifests/init.pp4
1 files changed, 2 insertions, 2 deletions
diff --git a/manifests/init.pp b/manifests/init.pp
index d2fb493..cba5146 100644
--- a/manifests/init.pp
+++ b/manifests/init.pp
@@ -39,8 +39,8 @@ class stunnel {
$TIMEOUTconnect = false, $TIMEOUTidle = false, $transparent = false,
$verify = false ) {
- real_client = $client ? { default => "yes" }
- real_pid = $pid ? { false => "/${name}.pid", default => $pid }
+ $real_client = $client ? { default => "yes" }
+ $real_pid = $pid ? { false => "/${name}.pid", default => $pid }
file { "/etc/stunnel/${name}.conf":
ensure => $ensure,