break
fi
done
-if ! $pull_reexec && [[ $source ]] && ! $pulla ; then
+if ! $pull_reexec && [[ $source ]] && $pulla ; then
tmpf=$(mktemp)
scp $source:/a/bin/distro-setup/btrbk-run $tmpf
if ! diff -q $tmpf $BASH_SOURCE; then
local_zone=$(date +%z)
if [[ $source ]]; then
- if ! zone=$(ssh root$source date +%z); then
+ if ! zone=$(ssh root@$source date +%z); then
die failed to ssh to root@$source
fi
if [[ $zone != $local_zone ]]; then
for h in ${targets[@]}; do
if zone=$(ssh root@$h "mkdir -p /mnt/root/btrbk && date +%z"); then
sshable+=($h)
+ if [[ $zone != $local_zone ]]; then
+ die "error: dont confuse yourself with multiple time zones. $h has different timezone than localhost"
+ fi
else
sshfail+=($h)
fi
- if [[ $zone != $local_zone ]]; then
- die "error: dont confuse yourself with multiple time zones. $h has different timezone than localhost"
- fi
done
if [[ ! $sshable ]] || { ! $cron && [[ $sshfail ]]; }; then
die "failed to ssh to hosts: ${sshfail[*]}"
##### begin command line parsing ########
update_wrt=true # default
-temp=$(getopt -l help wh "$@") || usage 1
+temp=$(getopt -l help owh "$@") || usage 1
mp_args=
eval set -- "$temp"
while true; do