mac_install: ensure to test /etc/ssh for el capitan.
This commit is contained in:
parent
488706b775
commit
e992c9a06c
|
@ -75,8 +75,11 @@ function getMyHostKey() {
|
|||
'Darwin')
|
||||
hostkey="/etc/ssh_host_rsa_key.pub"
|
||||
if [ ! -f "${hostkey}" ]; then
|
||||
printf '\e[1;31m%-6s\e[m' "Impossible de trouver la clef ssh publique ce cette machine, installation annulée."
|
||||
return "$ERROR"
|
||||
hostkey="/etc/ssh/ssh_host_rsa_key.pub"
|
||||
if [ ! -f "${hostkey}" ]; then
|
||||
printf '\e[1;31m%-6s\e[m' "Impossible de trouver la clef ssh publique ce cette machine, installation annulée."
|
||||
return "$ERROR"
|
||||
fi
|
||||
fi
|
||||
;;
|
||||
'Linux')
|
||||
|
|
Loading…
Reference in New Issue