remove kinsis / unused input settings
[distro-setup] / mount-latest-remote
index cd04fafa99182fe410ddab07e3ca127ae88dd14a..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} \
@@ -33,5 +34,7 @@ chmod +x /usr/local/bin/{mount-latest-subvol,check-subvol-stale}
 EOF
     then
         echo "$0: warning: failed mount-latest-subvol on $tg"
+        ret=1
     fi
 done
+exit $ret