Navigation Menu

Skip to content

Commit

Permalink
🚑 Remove VMware check, was not working as expected.
Browse files Browse the repository at this point in the history
  • Loading branch information
svpernova09 committed Dec 18, 2016
1 parent 2535f04 commit dc57dd5
Showing 1 changed file with 2 additions and 7 deletions.
9 changes: 2 additions & 7 deletions Vagrantfile
@@ -1,8 +1,6 @@
VAGRANTFILE_API_VERSION = '2'

Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
is_vm_ware = false

# Configure The Box
config.vm.box = 'bento/ubuntu-16.04'
config.vm.hostname = 'homestead'
Expand All @@ -19,7 +17,6 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
config.vm.provider :vmware_fusion do |v|
v.memory = 2048
v.cpus = 2
is_vm_ware = true
end

# Configure Port Forwarding
Expand All @@ -33,9 +30,7 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
# Run The Base Provisioning Script
config.vm.provision 'shell', path: './scripts/update.sh'
config.vm.provision :reload
if is_vm_ware
config.vm.provision 'shell', path: './scripts/vmware_tools.sh'
config.vm.provision :reload
end
config.vm.provision 'shell', path: './scripts/vmware_tools.sh'
config.vm.provision :reload
config.vm.provision 'shell', path: './scripts/provision.sh'
end

0 comments on commit dc57dd5

Please sign in to comment.