#!/sbin/openrc-run description="Mount /Volumes and /Users." depend() { need dbus } start() { /usr/sbin/volumesfs -o allow_other /Volumes /usr/sbin/usersfs -o allow_other /Users } stop() { fusermount -u /Volumes || true fusermount -u /Users || true }