X-Git-Url: https://iankelling.org/git/?p=distro-setup;a=blobdiff_plain;f=mount-latest-remote;h=2b5ca59fd81bfdf4efbf27385e22e86bfca3b3c5;hp=406a1e9f00378fef78f02c92fcf6c935f02e57cf;hb=917ca4a71b5c456b741456dc173c144ee7042d89;hpb=94fb80d967f107cbde4a3920dededbb406b2443b diff --git a/mount-latest-remote b/mount-latest-remote index 406a1e9..2b5ca59 100755 --- a/mount-latest-remote +++ b/mount-latest-remote @@ -19,22 +19,17 @@ 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 + ssh root@$tg bash <<'EOF' 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" - ret=1 - fi done -exit $ret