aboutsummaryrefslogtreecommitdiff
path: root/manifests
diff options
context:
space:
mode:
authorMicah Anderson <micah@riseup.net>2008-09-27 13:39:28 -0400
committerMicah Anderson <micah@riseup.net>2008-09-27 13:39:28 -0400
commit11be1b1f8c498bca58296dd98e3c586f65c301f7 (patch)
treec7c9a08f8d50c5dc698e6b7e736d744bb797eccb /manifests
parent2391ef9bfe2e5960a024b68d8e19d3a0954dd48c (diff)
downloadpuppet-sshd-11be1b1f8c498bca58296dd98e3c586f65c301f7.tar.gz
puppet-sshd-11be1b1f8c498bca58296dd98e3c586f65c301f7.tar.bz2
fix duplicate sshd word in variable name
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 0fd2dfa..7abc2ef 100644
--- a/manifests/init.pp
+++ b/manifests/init.pp
@@ -110,9 +110,9 @@ class sshd {
class sshd::base {
# prepare variables to use in templates
- $real_sshd_listen_address = $sshd_sshd_listen_address ? {
+ $real_sshd_listen_address = $sshd_listen_address ? {
'' => '',
- default => $sshd_sshd_listen_address
+ default => $sshd_listen_address
}
$real_sshd_allowed_users = $sshd_allowed_users ? {
'' => '',