The format is status fuse_get_context_uid fuse_get_context_gid fuse_get_context_pid os_process_id username mountpath.
So, to wait for successfull startup use grep -q READY <(tail -f ~/.local/share/Stud.IP-Fuse/studip-status.txt) (see here for more details on the -q and timeouts) and use mountpoint /home/muster/Stud.IP to verify the mount afterwards.
Fixes #5, use
tail
andgrep
to wait for completed startup.The result with the default logger configuration is:
The format is
status fuse_get_context_uid fuse_get_context_gid fuse_get_context_pid os_process_id username mountpath
. So, to wait for successfull startup usegrep -q READY <(tail -f ~/.local/share/Stud.IP-Fuse/studip-status.txt)
(see here for more details on the-q
and timeouts) and usemountpoint /home/muster/Stud.IP
to verify the mount afterwards.