kvm-host: add batch-mode and ignore stdin for SSH command in migrate-vm.sh

This commit is contained in:
Jérémy Lecour 2023-08-31 11:24:52 +02:00 committed by Jérémy Lecour
parent df202197c7
commit e2dea8054f
Signed by: jlecour
SSH key fingerprint: SHA256:h+5LgHRKwN9lS0SsdVR5yZPeFlJE4Mt+8UtL4CcP8dY
2 changed files with 2 additions and 1 deletions

View file

@ -32,6 +32,7 @@ The **patch** part changes is incremented if multiple releases happen the same m
* fail2ban: add default variable fail2ban_dbpurgeage_default
* fail2ban: add default variable fail2ban_dbpurgeage_default
* fail2ban: add variable fail2ban_sshd_port to configure sshd port
* kvm-host: add batch-mode and ignore stdin for SSH command in migrate-vm.sh
* nagios-nrpe: add a NRPE check-local command with completion.
* php: add new variable to disable oveeriding settings of php-fpm default pool (www)
* policy_pam: New role allowing to manage password policy with pam_pwquality & pam_pwhistory

View file

@ -88,7 +88,7 @@ execute_remotely() {
command=${*}
# shellcheck disable=SC2029
ssh "${remote}" "${command}"
ssh -n -o BatchMode=yes "${remote}" "${command}"
}
set_drbd_role() {