Compare commits

..

1 commit

Author SHA1 Message Date
972e6c0d87 Updates Ansible to 3.3.0 2021-04-21 23:24:19 +02:00

2
Vagrantfile vendored
View file

@ -74,7 +74,7 @@ Vagrant.configure(2) do |config|
dev.vm.provision "ansible_local" do |ansible| dev.vm.provision "ansible_local" do |ansible|
#ansible.verbose = "vvv" #ansible.verbose = "vvv"
ansible.compatibility_mode = "2.0" ansible.compatibility_mode = "2.0"
ansible.install_mode = "pip" ansible.install_mode = "pip_args_only"
ansible.pip_install_cmd = "sudo apt install -y python3-distutils && curl https://bootstrap.pypa.io/get-pip.py | sudo python3" ansible.pip_install_cmd = "sudo apt install -y python3-distutils && curl https://bootstrap.pypa.io/get-pip.py | sudo python3"
# The following will not work properly since the split of Ansible into ansible-base (soon ansible-core) # The following will not work properly since the split of Ansible into ansible-base (soon ansible-core)
# and the Ansible collections and modules both together resembling Ansible. # and the Ansible collections and modules both together resembling Ansible.