Bedrock-Ansible vagrantfile update, bindfs issue

I updated my vagrant configuration (in bedrock-ansible) to the newer version using bindfs and got the error:

The bind command `bindfs --perms=u=rwX:g=rD:o=rD --user=vagrant --group=www-data /vagrant-nfs-cunningryan /srv/www/cunningryan/current` failed to run!

Running the command on the virtual machine said:

fuse: mountpoint is not empty
fuse: if you are sure this is safe, use the 'nonempty' mount option

I had to add the “nonempty” mount option for bindfs in my vagrantfile to keep everything running smoothly when spinning up a halted box. For:

config.bindfs.bind_folder

I added:

o: 'nonempty'

Everything works fine now. Not sure if there’s any problem here, but just in case anyone runs into the same issue…

1 Like

Are you on the latest vagrant box as well? I can’t remember if @swalkinshaw made changes to the box that fixed stuff like this.

I just checked and it’s the latest (v0.4.0). Not sure what happened (most likely my fault) to create the issue.

But thanks for all you guys do for this community!