Comment 4 for bug 1605230

Revision history for this message
oshunluvr (stuartksmith) wrote :

My workaround, an endless script using inotify running from rc.local:

--------
#!/bin.bash

while true #run indefinitely
do
inotifywait /shared/ >/dev/null 2>&1
ls /shared >nul
done
--------

This does a sudo listing of all the subdirectories of "/shared" anytime the root folder is accessed. Obviously, change /shared to match yours...