From c7f5af695711c0dbfa3b2f90867ce9d73e71572e Mon Sep 17 00:00:00 2001 From: sabban Date: Mon, 22 Jan 2024 15:39:56 +0100 Subject: [PATCH] add fc39 --- test/ansible/vagrant/fedora-39/Vagrantfile | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 test/ansible/vagrant/fedora-39/Vagrantfile diff --git a/test/ansible/vagrant/fedora-39/Vagrantfile b/test/ansible/vagrant/fedora-39/Vagrantfile new file mode 100644 index 000000000..ec03661fe --- /dev/null +++ b/test/ansible/vagrant/fedora-39/Vagrantfile @@ -0,0 +1,10 @@ +# frozen_string_literal: true + +Vagrant.configure('2') do |config| + config.vm.box = "fedora/39-cloud-base" + config.vm.provision "shell", inline: <<-SHELL + SHELL +end + +common = '../common' +load common if File.exist?(common)