diff options
author | intrigeri <intrigeri@boum.org> | 2010-10-16 21:54:24 +0200 |
---|---|---|
committer | intrigeri <intrigeri@boum.org> | 2010-10-16 21:54:24 +0200 |
commit | ef093cafffb764fbedb26f7b8ce84c75329b1b7b (patch) | |
tree | 45a3782d2bbf642ea261be89813059fbad8d473c /manifests/init.pp | |
parent | a643172a794c9a1ff7602e9b4d3b220867684f54 (diff) | |
download | puppet-sshd-ef093cafffb764fbedb26f7b8ce84c75329b1b7b.tar.gz puppet-sshd-ef093cafffb764fbedb26f7b8ce84c75329b1b7b.tar.bz2 |
bugfix
Diffstat (limited to 'manifests/init.pp')
-rw-r--r-- | manifests/init.pp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/manifests/init.pp b/manifests/init.pp index abb1490..33c40e9 100644 --- a/manifests/init.pp +++ b/manifests/init.pp @@ -196,7 +196,7 @@ class sshd { case $sshd_permit_empty_passwords { '': { $sshd_permit_empty_passwords = 'no' } } - if ( $sshd_port != '' ) && ( $sshd_ports != []) { + if ( $sshd_port != '' ) and ( $sshd_ports != []) { err("Cannot use sshd_port and sshd_ports at the same time.") } if $sshd_port != '' { |