diff options
author | Micah Anderson <micah@riseup.net> | 2008-09-27 13:39:28 -0400 |
---|---|---|
committer | Micah Anderson <micah@riseup.net> | 2008-09-27 13:39:28 -0400 |
commit | 11be1b1f8c498bca58296dd98e3c586f65c301f7 (patch) | |
tree | c7c9a08f8d50c5dc698e6b7e736d744bb797eccb /manifests/init.pp | |
parent | 2391ef9bfe2e5960a024b68d8e19d3a0954dd48c (diff) | |
download | puppet-sshd-11be1b1f8c498bca58296dd98e3c586f65c301f7.tar.gz puppet-sshd-11be1b1f8c498bca58296dd98e3c586f65c301f7.tar.bz2 |
fix duplicate sshd word in variable name
Diffstat (limited to 'manifests/init.pp')
-rw-r--r-- | manifests/init.pp | 4 |
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 ? { '' => '', |