quiet
This commit is contained in:
parent
c5a9c6707d
commit
d235c8dbe4
|
@ -40,12 +40,11 @@ function configure_ssh {
|
||||||
if [[ $(is_completed $FUNCNAME) == "1" ]]; then
|
if [[ $(is_completed $FUNCNAME) == "1" ]]; then
|
||||||
return
|
return
|
||||||
fi
|
fi
|
||||||
if ! grep 'HostbasedAuthentication' /etc/ssh/sshd_config; then
|
if ! grep -q 'HostbasedAuthentication' /etc/ssh/sshd_config; then
|
||||||
echo 'HostbasedAuthentication no' >> /etc/ssh/sshd_config
|
echo 'HostbasedAuthentication no' >> /etc/ssh/sshd_config
|
||||||
else
|
fi
|
||||||
sed 's|#HostbasedAuthentication.*|HostbasedAuthentication no|g' /etc/ssh/sshd_config
|
sed 's|#HostbasedAuthentication.*|HostbasedAuthentication no|g' /etc/ssh/sshd_config
|
||||||
sed 's|HostbasedAuthentication.*|HostbasedAuthentication no|g' /etc/ssh/sshd_config
|
sed 's|HostbasedAuthentication.*|HostbasedAuthentication no|g' /etc/ssh/sshd_config
|
||||||
fi
|
|
||||||
sed -i 's|#PrintLastLog.*|PrintLastLog yes|g' /etc/ssh/sshd_config
|
sed -i 's|#PrintLastLog.*|PrintLastLog yes|g' /etc/ssh/sshd_config
|
||||||
sed -i 's|PrintLastLog.*|PrintLastLog yes|g' /etc/ssh/sshd_config
|
sed -i 's|PrintLastLog.*|PrintLastLog yes|g' /etc/ssh/sshd_config
|
||||||
sed -i 's|#IgnoreRhosts.*|IgnoreRhosts yes|g' /etc/ssh/sshd_config
|
sed -i 's|#IgnoreRhosts.*|IgnoreRhosts yes|g' /etc/ssh/sshd_config
|
||||||
|
|
Loading…
Reference in New Issue