From 69f86f60badfaa0d715ac3940bc313d925af66d9 Mon Sep 17 00:00:00 2001 From: Emilien Mantel Date: Mon, 28 Feb 2022 10:09:58 +0100 Subject: [PATCH] :zap: Remove old provision commands --- Vagrantfile | 8 -------- 1 file changed, 8 deletions(-) diff --git a/Vagrantfile b/Vagrantfile index 119e978..a29d8fa 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -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'