Remove old provision commands

master
Emilien Mantel 2022-02-28 10:09:58 +01:00
parent fa960ef6a8
commit 69f86f60ba
1 changed files with 0 additions and 8 deletions

8
Vagrantfile vendored
View File

@ -79,10 +79,6 @@ Vagrant.configure("2") do |config|
d.has_ssh = true
end
if opts[:os_name].include? "bullseye"
m.vm.provision "shell", inline: "[ -f '/root/first_provision' ] || (apt-get update -qq && apt-get -y dist-upgrade && touch /root/first_provision)"
end
m.vm.provision "ansible" do |ansible|
ansible.playbook = "tests/test.yml"
ansible.verbose = 'vv'
@ -106,10 +102,6 @@ Vagrant.configure("2") do |config|
v.memory = 512
end
if opts[:os_name].include? "bullseye"
m.vm.provision "shell", inline: "[ -f '/root/first_provision' ] || (apt-get update -qq && apt-get -y dist-upgrade && touch /root/first_provision)"
end
m.vm.provision "ansible" do |ansible|
ansible.playbook = "tests/test.yml"
ansible.verbose = 'vv'