From 48389d89d65d783409b3b746919028dea8fb6219 Mon Sep 17 00:00:00 2001 From: Ian Kelling Date: Thu, 16 May 2019 07:49:47 -0400 Subject: [PATCH] btrbk fixes install missing dependency better output on cron in cron, dont fail right away when we cant ssh to one host out of multiple --- btrbk-run | 68 +++++++++++++------ .../etc/systemd/system/btrbk.service | 2 +- mount-latest-subvol | 2 + 3 files changed, 51 insertions(+), 21 deletions(-) diff --git a/btrbk-run b/btrbk-run index 469b1b3..8d6eb28 100644 --- a/btrbk-run +++ b/btrbk-run @@ -43,8 +43,8 @@ rsync-dirs() { } -m() { if $verbose; then printf "$pre%s\n" "$*"; fi; "$@"; } -die() { printf "$pre%s\n" "$*" >&2; exit 1; } +m() { if $verbose; then printf "$pre %s\n" "$*"; fi; "$@"; } +die() { printf "$pre %s\n" "$*" >&2; exit 1; } # latest $MAIL_HOST if [[ -e /b/bash_unpublished/source-semi-priv ]]; then @@ -68,11 +68,13 @@ pull_reexec=false default_args_file=/etc/btrbk-run.conf if [[ -s $default_args_file ]]; then set -- $(< $default_args_file) "$@" + # i havent used this feature yet, so warn about it echo "$0: warning: default btrbk-run options set in $default_args_file (sleeping 5 seconds):" cat $default_args_file sleep 5 fi +pre="${0##*/}:" cron=false orig_args=("$@") temp=$(getopt -l cpull-reexec,help cl:m:npqs:t:vh "$@") || usage 1 @@ -81,7 +83,7 @@ while true; do case $1 in --cron) cron=true - pre="${0##*/}: " + pre= shift ;; # only creates the config file, does not run btrbk @@ -114,13 +116,13 @@ if [[ -v targets && $source ]]; then fi if $verbose; then - printf "$0: options: conf_only=%s\ndry_run=%s\nrate_limit=%s\nverbose=%s\ncmd_arg=%s" "$conf_only" "$dry_run" "$rate_limit" "$verbose" "$cmd_arg" + printf "$pre options: conf_only=%s\ndry_run=%s\nrate_limit=%s\nverbose=%s\ncmd_arg=%s" "$conf_only" "$dry_run" "$rate_limit" "$verbose" "$cmd_arg" fi ### end options parsing # set default targets -if [[ ! -v targets && ! $source && $HOSTNAME == $MAIL_HOST ]]; then +if [[ ! -v targets && ! $source && $HOSTNAME == "$MAIL_HOST" ]]; then case $HOSTNAME in kw|x2) if ping -q -c1 -w1 iank.vpn.office.fsf.org &>/dev/null; then @@ -186,7 +188,7 @@ else esac for mp in ${prospective_mps[@]}; do # default mountpoints to sync if [[ -e /nocow/btrfs-stale/$mp ]]; then - echo "$0: warning: $mp stale, not adding to default mountpoints" + echo "$pre warning: $mp stale, not adding to default mountpoints" continue fi if awk '{print $2}' /etc/fstab | grep -xF $mp &>/dev/null; then @@ -212,7 +214,7 @@ if ! $pull_reexec && [[ $source ]] && ! $pulla ; then tmpf=$(mktemp) scp $source:/a/bin/distro-setup/btrbk-run $tmpf if ! diff -q $tmpf $BASH_SOURCE; then - echo "$0: found newer version on host $source. reexecing" + echo "$pre found newer version on host $source. reexecing" install -T $tmpf /usr/local/bin/btrbk-run m /usr/local/bin/btrbk-run --pull-reexec "${orig_args[@]}" exit @@ -231,6 +233,43 @@ fi # it doesn't make sense to do a backup. check-subvol-stale ${mountpoints[@]} || die "found stale mountpoints in ${mountpoints[*]}" +# for an initial run, btrbk requires the dir to exist. +mkdir -p /mnt/root/btrbk +local_zone=$(date +%z) + +if [[ $source ]]; then + if ! zone=$(ssh root$source date +%z); then + die failed to ssh to root@$source + fi + if [[ $zone != $local_zone ]]; then + die "error: dont confuse yourself with multiple time zones. $h has different timezone than localhost" + fi + +else + + sshable=() + sshfail=() + for h in ${targets[@]}; do + if zone=$(ssh root@$h "mkdir -p /mnt/root/btrbk && date +%z"); then + sshable+=($h) + 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[*]}" + else + if [[ $sshfail ]]; then + ret=1 + echo "$pre error: failed to ssh to ${sshfail[*]} but continuing with other hosts" + fi + targets=(${sshable[@]}) + fi +fi + cat >/etc/btrbk.conf <