Commit c67e6627 authored by Vitaly Lipatov's avatar Vitaly Lipatov

grf: allow missed nodes

parent 17393797
...@@ -45,7 +45,8 @@ mount_g() ...@@ -45,7 +45,8 @@ mount_g()
else else
echo "Mounting $i..." echo "Mounting $i..."
mkdir -vp "$MOUNTDIR/$host/$path" mkdir -vp "$MOUNTDIR/$host/$path"
sshfs "$host:$path" "$MOUNTDIR/$host/$path" || { echo "Error mount" ; umount_g ; exit 1 ; } #sshfs "$host:$path" "$MOUNTDIR/$host/$path" || { echo "Error mount" ; umount_g ; exit 1 ; }
sshfs "$host:$path" "$MOUNTDIR/$host/$path" || { echo "Error mount, skipping" ; }
fi fi
done done
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment