add 8u4 Vagrantfiles

This commit is contained in:
Trevor Cooper 2023-05-20 12:06:16 -07:00
parent 5af819724f
commit f62b89fc0c
Signed by: tcooper
GPG Key ID: 52364D7BBCEB35B8
3 changed files with 63 additions and 0 deletions

20
centos/Vagrantfile vendored Normal file
View File

@ -0,0 +1,20 @@
# -*- mode: ruby -*-
# vi: set ft=ruby :
Vagrant.configure("2") do |config|
config.vm.box = "custom/centos8u4"
config.vm.hostname = "centos8u4-repotesting.example.org"
config.vm.synced_folder "../vagrantdata", "/home/vagrant/data"
config.vm.provider "virtualbox" do |vb|
vb.gui = true
vb.memory = "2048"
vb.cpus = "2"
end
config.vm.provision "shell", inline: <<-SHELL
dnf -y --enablerepo=epel,powertools install rpminspect rpminspect-data-fedora tree htop vim-enhanced
dnf clean all
SHELL
end

21
rhel/Vagrantfile vendored Normal file
View File

@ -0,0 +1,21 @@
# -*- mode: ruby -*-
# vi: set ft=ruby :
Vagrant.configure("2") do |config|
config.vm.box = "generic/rhel8"
config.vm.hostname = "rhel8u4-repotesting.example.orgm"
config.vm.synced_folder "../vagrantdata", "/home/vagrant/data"
config.vm.provider "virtualbox" do |vb|
vb.gui = true
vb.memory = "2048"
vb.cpus = "2"
end
# Enable provisioning with a shell script. Additional provisioners such as
config.vm.provision "shell", inline: <<-SHELL
dnf -y update
dnf -y --enablerepo=epel,codeready install rpminspect rpminspect-data-fedora tree htop vim-enhanced
SHELL
end

22
rocky/Vagrantfile vendored Normal file
View File

@ -0,0 +1,22 @@
# -*- mode: ruby -*-
# vi: set ft=ruby :
Vagrant.configure("2") do |rocky8u4|
# Note, custom/rocky8u4 is derived from generic/centos8 and migrate2rocky.sh
rocky8u4.vm.box = "custom/rocky8u4"
rocky8u4.vm.hostname = "rocky8u4-repotesting.example.org"
rocky8u4.vm.synced_folder "../vagrantdata", "/home/vagrant/data"
rocky8u4.vm.provider "virtualbox" do |vb|
vb.gui = true
vb.memory = "2048"
vb.cpus = "2"
end
# Enable provisioning with a shell script. Additional provisioners such as
rocky8u4.vm.provision "shell", inline: <<-SHELL
dnf -y --enablerepo=epel,powertools install rpminspect rpminspect-data-fedora tree htop vim-enhanced
SHELL
end