Ferk / udev-media-automount

A simple automount mechanism using udev rules
Other
121 stars 59 forks source link

deletes cdrom folder in /media #3

Closed g1vvu closed 5 years ago

g1vvu commented 5 years ago

deletes cdrom folder in /media an ideas?

g1vvu commented 5 years ago

this seems to work......I'm not sure how rugged though

# cleanup
for dir in "$mdir"/*
do
if  ! [ "$dir" = "/media//cdrom" ]
then
[ -d "$dir" ] && ! mountpoint -q "$dir" && rmdir "$dir"
fi
done
exit $exitcode

fi