From c897e541fd7a1896ba1ced2b1c154acd7612abdb Mon Sep 17 00:00:00 2001 From: Tim Meusel Date: Thu, 16 May 2024 21:53:39 +0200 Subject: [PATCH] Fedora 36: ensure augeas is installed Required to get the augeas fact for factsets generated by rubygems.org releases. --- facts/Vagrantfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/facts/Vagrantfile b/facts/Vagrantfile index 04a3afee..071e34e4 100644 --- a/facts/Vagrantfile +++ b/facts/Vagrantfile @@ -342,7 +342,7 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config| host.vm.box = 'generic/fedora36' host.vm.synced_folder '.', '/vagrant' # there's no official support for fedora 36, so we need facter from Fedora - host.vm.provision 'shell', inline: 'dnf -y install facter ruby ruby-devel wget make gcc net-tools' + host.vm.provision 'shell', inline: 'dnf -y install facter ruby ruby-devel wget make gcc net-tools augeas' host.vm.provision 'file', source: 'Gemfile', destination: 'Gemfile' host.vm.provision 'shell', path: 'get_facts.sh' host.vm.provision 'shell', inline: '/sbin/shutdown -h now'