From: Micah Anderson Date: Sat, 27 Sep 2008 17:39:28 +0000 (-0400) Subject: fix duplicate sshd word in variable name X-Git-Url: https://gitweb.fluxo.info/?a=commitdiff_plain;h=11be1b1f8c498bca58296dd98e3c586f65c301f7;p=puppet-sshd.git fix duplicate sshd word in variable name --- 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 ? { '' => '',