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