e Running initial btrbk
-if ! m btrbk-run -v $bbk_args $incremental_arg $mp_args; then
- ret=$?
+m btrbk-run -v $bbk_args $incremental_arg $mp_args || ret=$?
+if (( ret )); then
err "failed initial btrbk"
exit $ret
fi
exit 0
fi
-if ! m $old_shell /a/exe/primary-setup $new_hostname; then
- ret=$?
+m $old_shell /a/exe/primary-setup $new_hostname || ret=$?
+if (( ret )); then
err "failed \$old_shell primary-setup \$new_hostname. fix and rerun $script_name"
exit $ret
fi
#
# shopt -s nullglob; find . -type f -mtime -2 | while read -r f; do a=( /m/4e/Sent/cur/${f%,*}* ); if (( ${#a[@]} )); then e exists $a; else m cp -a $f /m/4e/Sent/cur; fi; done
-if ! m $new_shell /a/exe/primary-setup localhost; then
- ret=$?
+m $new_shell /a/exe/primary-setup localhost || ret=$?
+if (( ret )); then
err "failed final primary-setup, just fix and rerun: $new_shell /a/exe/primary-setup localhost"
exit $ret
fi