This commit is contained in:
2024-05-02 01:37:26 -04:00
parent 324fe0b191
commit 4d3faf3617
2 changed files with 57 additions and 9 deletions

3
Vagrantfile vendored
View File

@@ -36,6 +36,7 @@ Vagrant.configure("2") do |config|
config.vm.provider :virtualbox do |vbox|
vbox.cpus = VAGRANT_CPUS
vbox.memory = VAGRANT_MEM
vbox.gui = true
end
# Provision with Ansible
@@ -43,6 +44,6 @@ Vagrant.configure("2") do |config|
ENV['ANSIBLE_ROLES_PATH'] = File.dirname(__FILE__) + "/roles"
ansible.compatibility_mode = "2.0"
ansible.playbook = "dev/" + PLAYBOOK + ".yml"
ansible.raw_arguments = ["--diff"]
ansible.raw_arguments = ["--diff", "-vvv"]
end
end