authftp: info pour host key verification failed
This commit is contained in:
parent
47e058330f
commit
4bf4f6d1f3
9
authftp
9
authftp
|
@ -40,6 +40,14 @@ façon dont le proxy ftp est configuré, il n'est pas possible de se connecter
|
||||||
avec un mot de passe qui contient le caractère @"
|
avec un mot de passe qui contient le caractère @"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function hostkeyfailed_apropos() {
|
||||||
|
eecho "\
|
||||||
|
------------------------------------------------------------------------------------
|
||||||
|
Si le message 'Host key verification failed' apparait, lancer la commande suivante:
|
||||||
|
ssh -o StrictHostKeyChecking=no -o BatchMode=yes $1
|
||||||
|
------------------------------------------------------------------------------------"
|
||||||
|
}
|
||||||
|
|
||||||
AUTHFTP_PROXY_DISABLED=1 # par défaut, ne pas utiliser le proxy
|
AUTHFTP_PROXY_DISABLED=1 # par défaut, ne pas utiliser le proxy
|
||||||
set_defaults proxy
|
set_defaults proxy
|
||||||
set_defaults authftp
|
set_defaults authftp
|
||||||
|
@ -78,6 +86,7 @@ if [ -n "$lftp" ]; then
|
||||||
if [ -n "$noproxy" ]; then
|
if [ -n "$noproxy" ]; then
|
||||||
if [ -n "$sftp" ]; then
|
if [ -n "$sftp" ]; then
|
||||||
url="sftp://$host/$path"
|
url="sftp://$host/$path"
|
||||||
|
hostkeyfailed_apropos "$login@$host"
|
||||||
else
|
else
|
||||||
url="ftp://$host/$path"
|
url="ftp://$host/$path"
|
||||||
fi
|
fi
|
||||||
|
|
Loading…
Reference in New Issue