Browse Source

replace sudo by become

pull/2062/head
Erwan SEITE 7 years ago
parent
commit
5f5d0ffe14
1 changed files with 1 additions and 1 deletions
  1. 2
      Vagrantfile

2
Vagrantfile

@ -164,7 +164,7 @@ Vagrant.configure("2") do |config|
if File.exist?(File.join(File.dirname($inventory), "hosts")) if File.exist?(File.join(File.dirname($inventory), "hosts"))
ansible.inventory_path = $inventory ansible.inventory_path = $inventory
end end
ansible.sudo = true
ansible.become = true
ansible.limit = "all" ansible.limit = "all"
ansible.host_key_checking = false ansible.host_key_checking = false
ansible.raw_arguments = ["--forks=#{$num_instances}", "--flush-cache"] ansible.raw_arguments = ["--forks=#{$num_instances}", "--flush-cache"]

Loading…
Cancel
Save