X-Git-Url: https://iankelling.org/git/?a=blobdiff_plain;f=switch-mail-host;h=a0c590d0ae8b3287715584cda9eaf26119eb8c15;hb=32a1673064cfd9eaa165b4ea62fa416f02f3dfd2;hp=f26b945bea1a1b139a1232e08942fe8192f7a1af;hpb=343a048be4b32d18540c6531048d2b9a006774ae;p=distro-setup diff --git a/switch-mail-host b/switch-mail-host old mode 100644 new mode 100755 index f26b945..a0c590d --- a/switch-mail-host +++ b/switch-mail-host @@ -4,7 +4,7 @@ source /usr/local/lib/err usage() { cat <&2; } ##### begin command line parsing ######## @@ -55,8 +57,28 @@ done (( $# == 2 )) || usage 1 -old_host=$1 -new_host=$2 + +case $1 in + push) + new_host=$2 + bbk_args="-s $old_host" + new_shell="ssh $new_host" + old_host=$HOSTNAME + ;; + pull) + old_host=$2 + bbk_args="-t $new_host" + bbk_args="-s $old_host" + new_host=$HOSTNAME + old_shell="ssh $old_host" + ;; + *) + err invalid first argument + exit 1 + ;; +esac + + source /a/bin/bash_unpublished/source-state if [[ $old_host != "$MAIL_HOST" ]]; then @@ -66,47 +88,42 @@ if [[ $old_host != "$MAIL_HOST" ]]; then fi fi -if [[ $new_host == "$HOSTNAME" ]]; then - localhost_new=true - new_shell= -else - localhost_new=false - new_shell="ssh $new_host" -fi - -old_shell="ssh $old_host" -if [[ $old_host == "$HOSTNAME" ]]; then - old_shell= -fi - if [[ ! $new_host || ! $old_host ]]; then echo "$0: bad args. see script" exit 1 fi - -source /a/bin/bash_unpublished/source-state - - +e $new_shell hostname new_hostname=$($new_shell hostname) ########### end initial processing, begin actually modifying things ########## if $new_shell systemctl is-active btrbk.timer; then m $new_shell sudo systemctl stop btrbk.timer + _errcatch_cleanup=cleanup restore_new_btrbk=true fi if $old_shell systemctl is-active btrbk.timer; then m $old_shell sudo systemctl stop btrbk.timer + _errcatch_cleanup=cleanup restore_old_btrbk=true fi btrbk_test="systemctl is-active btrbk.service" -while [[ $($new_shell $btrbk_test) != inactive ]] || [[ $($old_shell $btrbk_test) != inactive ]]; do - echo "$0: btrbk is running on new or old host. sleeping for 8 seconds" - sleep 6 - echo "$0: testing for btrbk activity in 2 seconds" - sleep 2 +while true; do + for shell in "$new_shell" "$old_shell"; do + e $shell $btrbk_test + status=$($shell $btrbk_test) ||: + case $status in + inactive|failed) : ;; + *) + e "btrbk active on shell:$shell, status:$status, sleeping 8 seconds" + sleep 8 + continue + ;; + esac + done + break done # ensure these are unused before doing anything @@ -132,12 +149,16 @@ EOF # I think exim will try ipv6 first, so no need to disable # ipv6 i think. + + m $old_shell /a/exe/primary-setup $new_hostname -if $localhost_new; then - m btrbk-run -v -s $old_host $mp_args -else - m btrbk-run -v -t $new_host $mp_args +if ! m btrbk-run -v $bbk_args $mp_args; then + ret=$? + bang="$(printf "$(tput setaf 5)█$(tput sgr0)%.0s" 1 2 3 4 5 6 7)" + e $bang failed btrbk. restoring old host as primary + m $old_shell /a/exe/primary-setup localhost + exit $ret fi -m $new_shell /a/exe/primary-setup $new_hostname +m $new_shell /a/exe/primary-setup localhost