X-Git-Url: https://iankelling.org/git/?a=blobdiff_plain;f=mount-latest-remote;h=279a61b4dcb2bdebadf8aafdcf3b0469f9d3f5e3;hb=343a048be4b32d18540c6531048d2b9a006774ae;hp=43f9400b8074ad29675787a1c571cfab6a0d8df9;hpb=52ba30d54960fe49799eeaea3802e35d5a86df44;p=distro-setup diff --git a/mount-latest-remote b/mount-latest-remote index 43f9400..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} -mount-latest-subvol +/usr/local/bin/mount-latest-subvol EOF - then - echo "$0: warning: failed mount-latest-subvol on $tg" - fi done +exit $ret