X-Git-Url: https://iankelling.org/git/?a=blobdiff_plain;f=mount-latest-remote;h=279a61b4dcb2bdebadf8aafdcf3b0469f9d3f5e3;hb=410b30bc4194a6c84db5d73b15a7e211ce47bc9c;hp=cd04fafa99182fe410ddab07e3ca127ae88dd14a;hpb=c12fecb2eb85890400d451732a2acecce5b69bc4;p=distro-setup diff --git a/mount-latest-remote b/mount-latest-remote index cd04faf..279a61b 100755 --- a/mount-latest-remote +++ b/mount-latest-remote @@ -19,19 +19,18 @@ trap 'echo "$0:$LINENO:error: \"$BASH_COMMAND\" returned $?" >&2' ERR script_dir=$(dirname $(readlink -f "$BASH_SOURCE")) if [[ ! $@ ]]; then - echo "mount-latest-remote: error: expected 1 or more host arguments" - exit 1 + echo "mount-latest-remote: error: expected 1 or more host arguments" + exit 1 fi +ret=0 for tg; do - scp $script_dir/{mount-latest-subvol,check-subvol-stale} \ - root@$tg:/usr/local/bin - if ! ssh root@$tg bash <<'EOF' + scp $script_dir/{mount-latest-subvol,check-subvol-stale} \ + root@$tg:/usr/local/bin || ret=1 + ssh root@$tg bash <<'EOF' || ret=1 set -e chmod +x /usr/local/bin/{mount-latest-subvol,check-subvol-stale} /usr/local/bin/mount-latest-subvol EOF - then - echo "$0: warning: failed mount-latest-subvol on $tg" - fi done +exit $ret