Vagrantfile
eba87160
 Vagrant.configure(2) do |config|
   config.vm.box = 'ubuntu/focal64'
 
   config.vm.provision 'shell', inline: <<~'SHELL'
     export DEBIAN_FRONTEND="noninteractive"
     apt-get update
   SHELL
 
   config.vm.provision 'ansible' do |ansible|
     ansible.playbook = 'site.yml'
   end
 end