I'm able to mount a shared folder after boot, but on boot it doesn't work.
I followed the instructions:
http://not403.blogspot.com/2016/05/how-to-mount-virtualbox-shared-volumes.html
And added it to /etc/fstab and created a file in /etc/sysconfig/modules/local.modules (and made it executable and owned by root)
but it still doesn't work. instead i get an error:
systemd[1]: Failed to mount /webapps/apps/destfolder
How do I get this to work?
FSTAB
sharedfoldername /webapps/apps/destfolder vboxsf rw,uid=48,gid=48 0 0
local.modules
#!/bin/sh
lsmod |grep vboxsf >/dev/null 2>&1
if [ $? -gt 0 ] ; then
exec /sbin/modprobe vboxsf >/dev/null 2>&1
fi