Force creation of an ssh key for backups
This commit is contained in:
parent
f729776d1f
commit
9ea0b4d0c5
2 changed files with 3 additions and 2 deletions
|
@ -19,6 +19,7 @@ function backupAction -V dir
|
||||||
read -xP "Please specify the host name of the SSH server: " VALHALLA_BACKUP_SERVER
|
read -xP "Please specify the host name of the SSH server: " VALHALLA_BACKUP_SERVER
|
||||||
read -xP "Please specify the port of the SSH server (default 22): " VALHALLA_BACKUP_SERVER_PORT
|
read -xP "Please specify the port of the SSH server (default 22): " VALHALLA_BACKUP_SERVER_PORT
|
||||||
read -xP "Please specify the name of the user to log in to the SSH server: " VALHALLA_BACKUP_SERVER_USER
|
read -xP "Please specify the name of the user to log in to the SSH server: " VALHALLA_BACKUP_SERVER_USER
|
||||||
|
read -xP "Please specify the path to the key file for logging in to the SSH server: " VALHALLA_BACKUP_SERVER_KEY
|
||||||
|
|
||||||
if [ -z "$VALHALLA_BACKUP_SERVER_PORT" ]
|
if [ -z "$VALHALLA_BACKUP_SERVER_PORT" ]
|
||||||
set -x VALHALLA_BACKUP_SERVER_PORT 22
|
set -x VALHALLA_BACKUP_SERVER_PORT 22
|
||||||
|
@ -33,7 +34,7 @@ function backupAction -V dir
|
||||||
echo "For a seamless experience, please make sure that you are able to establish an unattended ssh connection using key authentication."
|
echo "For a seamless experience, please make sure that you are able to establish an unattended ssh connection using key authentication."
|
||||||
echo
|
echo
|
||||||
echo "$(tput bold)This command should succeed without user interaction:$(tput sgr0)"
|
echo "$(tput bold)This command should succeed without user interaction:$(tput sgr0)"
|
||||||
echo "ssh -o PasswordAuthentication=no -p $VALHALLA_BACKUP_SERVER_PORT $VALHALLA_BACKUP_SERVER true"
|
echo "sudo ssh -o PasswordAuthentication=no -i $(string escape -- "$VALHALLA_BACKUP_SERVER_KEY") -p $VALHALLA_BACKUP_SERVER_PORT $VALHALLA_BACKUP_SERVER true"
|
||||||
read -P "Press enter once you're done: "
|
read -P "Press enter once you're done: "
|
||||||
echo
|
echo
|
||||||
end
|
end
|
||||||
|
|
|
@ -62,7 +62,7 @@ function runRestorationCommand
|
||||||
set -a args -p $VALHALLA_BACKUP_SERVER_PORT
|
set -a args -p $VALHALLA_BACKUP_SERVER_PORT
|
||||||
end
|
end
|
||||||
|
|
||||||
ssh $args "$VALHALLA_BACKUP_SERVER" (string escape -- $argv)
|
sudo ssh $args "$VALHALLA_BACKUP_SERVER" (string escape -- $argv)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue