Update Vagrantfile. Fixing permission issue on vagrant.

This commit is contained in:
Kawlll Maxso
2019-03-01 09:30:37 +00:00
parent bc9434401c
commit ac4d9dd4d6
Vendored
+3 -1
View File
@@ -6,7 +6,9 @@ Vagrant.configure(2) do |config|
config.vm.box = "centos/7"
# add synced host folder with guest folder
config.vm.synced_folder ".", "/vagrant", type: "virtualbox"
config.vm.synced_folder ".", "/vagrant", type: "virtualbox",owner: "root",
group: "root",
mount_options: ["dmode=777,fmode=777"]
# ssh configuration
config.ssh.insert_key = false