remove kinsis / unused input settings
[distro-setup] / mount-latest-remote
index 43f9400b8074ad29675787a1c571cfab6a0d8df9..406a1e9f00378fef78f02c92fcf6c935f02e57cf 100755 (executable)
@@ -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