X-Git-Url: https://iankelling.org/git/?a=blobdiff_plain;f=mount-latest-remote;h=406a1e9f00378fef78f02c92fcf6c935f02e57cf;hb=65351382939fa95fb1e05d7d83eb58d27c3c6133;hp=43f9400b8074ad29675787a1c571cfab6a0d8df9;hpb=52ba30d54960fe49799eeaea3802e35d5a86df44;p=distro-setup diff --git a/mount-latest-remote b/mount-latest-remote index 43f9400..406a1e9 100755 --- a/mount-latest-remote +++ b/mount-latest-remote @@ -22,6 +22,7 @@ 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} \ @@ -29,9 +30,11 @@ for tg; do 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