Skip to content

Commit

Permalink
Add AmazonLinux 2023
Browse files Browse the repository at this point in the history
  • Loading branch information
jay7x authored Oct 21, 2024
1 parent 86ad751 commit a630314
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions facts/Vagrantfile
Original file line number Diff line number Diff line change
Expand Up @@ -331,6 +331,13 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
host.vm.provision 'shell', path: 'get_facts.sh'
host.vm.provision 'shell', inline: '/sbin/shutdown -h now'
end
config.vm.define 'amazonlinux-2023-x86_64', autostart: false do |host|
host.vm.box = 'bento/amazonlinux-2023'
host.vm.provision 'shell', inline: 'yum -y install gcc glibc-devel'
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'
end
config.vm.define 'fedora-36-x86_64', autostart: false do |host|
host.vm.box = 'generic/fedora36'
host.vm.synced_folder '.', '/vagrant'
Expand Down

0 comments on commit a630314

Please sign in to comment.