Vagrant version: 2.2.6
Virtualbox Version: 6.0.14
Host OS: macOS Mojave 10.14.6
VM OS: CentOS 7 (1905.1)
Vagrant Addon: vagrant-vbguest 0.20
I have a virtual machine setup but sync folders with virtualbox doesn't work. Anyone with similar issues or a solution to help? Thank you in advance.
Below is the Vagrantfile used.
Vagrant.configure("2") do |config|
config.vm.box = "centos/7"
config.vm.hostname = "CentOS"
config.vm.network "forwarded_port", guest: 80, host: 8080,
auto_correct: true
config.vm.network "forwarded_port", guest: 80, host: 8080, host_ip: "127.0.0.1"
config.vm.synced_folder ".", "/vagrant", type: "virtualbox"
# Ansible Provisioning
config.vm.provision "ansible" do |ansible|
ansible.playbook = "ansible/dev_setup.yml"
end
end
I have also attached the VBox.log files, if it will help.