X-Git-Url: https://iankelling.org/git/?a=blobdiff_plain;f=mount-latest-remote;h=406a1e9f00378fef78f02c92fcf6c935f02e57cf;hb=709a36a78bd13e0244ab254834ff67d0c03a6f45;hp=ec475597cc01c4960ddb8ec10758c1647856b25a;hpb=f7cd81f49aa5d7a4581db63bed053e66e692972e;p=distro-setup diff --git a/mount-latest-remote b/mount-latest-remote index ec47559..406a1e9 100755 --- a/mount-latest-remote +++ b/mount-latest-remote @@ -22,13 +22,19 @@ if [[ ! $@ ]]; then 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 - ssh root@$tg bash <<'EOF' + if ! ssh root@$tg bash <<'EOF' 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" + ret=1 + fi done +exit $ret