Skip to content

Commit 659d97e

Browse files
committed
Install presetup dependencies during VM provision
1 parent 4415110 commit 659d97e

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

Vagrantfile

+5-4
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,10 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
1717
vb.memory = 8192
1818
vb.cpus = 4
1919
end
20-
contrail_sandbox_config.vm.provision "ansible" do |ansible|
21-
ansible.playbook = "provisioning/site.yaml"
22-
ansible.verbose = "v"
23-
end
20+
contrail_sandbox_config.vm.provision "shell", inline: <<-SCRIPT
21+
yum install epel-release -y
22+
yum install ansible -y
23+
yum install vim -y
24+
SCRIPT
2425
end
2526
end

0 commit comments

Comments
 (0)