Skip to content

Commit

Permalink
Add CentOS 10 facts
Browse files Browse the repository at this point in the history
  • Loading branch information
bastelfreak committed Jan 2, 2025
1 parent d0b3f8c commit e6bf5b8
Show file tree
Hide file tree
Showing 10 changed files with 4,853 additions and 0 deletions.
488 changes: 488 additions & 0 deletions facts/4.10/centos-10-x86_64.facts

Large diffs are not rendered by default.

478 changes: 478 additions & 0 deletions facts/4.2/centos-10-x86_64.facts

Large diffs are not rendered by default.

478 changes: 478 additions & 0 deletions facts/4.3/centos-10-x86_64.facts

Large diffs are not rendered by default.

478 changes: 478 additions & 0 deletions facts/4.4/centos-10-x86_64.facts

Large diffs are not rendered by default.

484 changes: 484 additions & 0 deletions facts/4.5/centos-10-x86_64.facts

Large diffs are not rendered by default.

483 changes: 483 additions & 0 deletions facts/4.6/centos-10-x86_64.facts

Large diffs are not rendered by default.

483 changes: 483 additions & 0 deletions facts/4.7/centos-10-x86_64.facts

Large diffs are not rendered by default.

973 changes: 973 additions & 0 deletions facts/4.8/centos-10-x86_64.facts

Large diffs are not rendered by default.

488 changes: 488 additions & 0 deletions facts/4.9/centos-10-x86_64.facts

Large diffs are not rendered by default.

20 changes: 20 additions & 0 deletions facts/Vagrantfile
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,26 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
# use the host.vm.box_url below
# facts land as centos-9-x86_64.facts
#
config.vm.define 'centos-stream10-x86_64', autostart: false do |host|
host.vm.box = 'centos/stream10'
host.vm.box_url = 'https://cloud.centos.org/centos/10-stream/x86_64/images/CentOS-Stream-Vagrant-10-latest.x86_64.vagrant-virtualbox.box'
# centos packages their box with synced folders set to rsync (presumably
# since vboxsf is not built in their kernel)
# If the version of the kernel-headers/kernel-devel that are available
# for download are newer than what is on the box then guest additions will
# not build. If the stars align, then you can set `type: 'virtualbox'`
# for synced_folder and maybe it will work, otherwise, it is a manual
# effort to rsync the fact files back
# host.vm.synced_folder '.', '/vagrant', type: 'virtualbox'
host.vm.synced_folder '.', '/vagrant'
host.vm.provision 'shell', inline: 'dnf -y install wget make gcc net-tools'
host.vm.provision 'file', source: 'Gemfile', destination: 'Gemfile'
host.vm.provision 'shell', path: 'get_facts.sh'
# commented to allow manual retrieval of the facts
# host.vm.provision 'shell', inline: '/sbin/shutdown -h now'
# this will install the guest additions which requires `vagrant plugin install vagrant-vbguest`
host.vbguest.auto_update = true
end
config.vm.define 'centos-stream9-x86_64', autostart: false do |host|
host.vm.box = 'centos/stream9'
host.vm.box_url = 'https://cloud.centos.org/centos/9-stream/x86_64/images/CentOS-Stream-Vagrant-9-20240513.0.x86_64.vagrant-virtualbox.box'
Expand Down

0 comments on commit e6bf5b8

Please sign in to comment.