Browse Source

Rocky linux added

master
Dave on FENDER 1 year ago
parent
commit
d1bc5fa01f
  1. 6
      albert/kickstart.cfg
  2. 2
      common/rocky/media_netboot.cfg
  3. 24
      common/rocky/post.cfg
  4. 3
      common/rocky/repo.cfg
  5. 2
      common/rocky/services.cfg

6
albert/kickstart.cfg

@ -1,4 +1,4 @@
%include https://config.tombstones.org.uk:23000/tombstones/kickstarts/raw/branch/master/common/centos9/media_netboot.cfg
%include https://config.tombstones.org.uk:23000/tombstones/kickstarts/raw/branch/master/common/rocky/media_netboot.cfg
%include https://config.tombstones.org.uk:23000/tombstones/kickstarts/raw/branch/master/common/authentication.cfg
%include https://config.tombstones.org.uk:23000/tombstones/kickstarts/raw/branch/master/common/authentication_rootpw.cfg
%include https://config.tombstones.org.uk:23000/tombstones/kickstarts/raw/branch/master/common/logging.cfg
@ -13,7 +13,7 @@
#%include https://config.tombstones.org.uk:23000/tombstones/kickstarts/raw/branch/master/common/firewall.cfg
#%include https://config.tombstones.org.uk:23000/tombstones/kickstarts/raw/branch/master/albert/firewall.cfg
%include https://config.tombstones.org.uk:23000/tombstones/kickstarts/raw/branch/master/common/centos9/repo.cfg
%include https://config.tombstones.org.uk:23000/tombstones/kickstarts/raw/branch/master/common/rocky/repo.cfg
%include https://config.tombstones.org.uk:23000/tombstones/kickstarts/raw/branch/master/common/locale.cfg
%include https://config.tombstones.org.uk:23000/tombstones/kickstarts/raw/branch/master/common/groups.cfg
%include https://config.tombstones.org.uk:23000/tombstones/kickstarts/raw/branch/master/common/system_finalize.cfg
@ -29,7 +29,7 @@
%post --erroronfail --log=/root/kickstart-post.log
%include https://config.tombstones.org.uk:23000/tombstones/kickstarts/raw/branch/master/albert/kickstart-post.cfg
%include https://config.tombstones.org.uk:23000/tombstones/kickstarts/raw/branch/master/common/centos9/post.cfg
%include https://config.tombstones.org.uk:23000/tombstones/kickstarts/raw/branch/master/common/rocky/post.cfg
%include https://config.tombstones.org.uk:23000/tombstones/kickstarts/raw/branch/master/albert/cron.cfg
%include https://config.tombstones.org.uk:23000/tombstones/kickstarts/raw/branch/master/albert/post.cfg
%end

2
common/rocky/media_netboot.cfg

@ -0,0 +1,2 @@
### INSTALL MEDIA
url --url='https://download.rockylinux.org/pub/rocky/9/BaseOS/x86_64/os/'

24
common/rocky/post.cfg

@ -0,0 +1,24 @@
### REPOSITORIES
# kickstart repo command with --install doesn't pull down GPG Keys
# installing the official rpm for each project will handle that
echo "Configuring additional system repositories"
echo "would add EPEL here"
#rpm -Uvh https://dl.fedoraproject.org/pub/epel/epel-release-latest-9.noarch.rpm
echo "would also install Ansible here"
#echo "Puppet Labs"
#rpm -Uvh https://yum.puppet.com/puppet5/puppet5-release-el-8.noarch.rpm
### UPGRADE
echo "Forcing and upgrade of the system"
dnf -y upgrade
### PACKAGES
# PUPPET and resolved dependancies
#echo "Installing Puppet"
#dnf -y install puppet-agent
## this is needed for semanage
#dnf -y install policycoreutils-python-utils

3
common/rocky/repo.cfg

@ -0,0 +1,3 @@
### YUM REPOS (used during kickstart only)
inst.repo --name="rocky" --baseurl=https://download.rockylinux.org/pub/rocky/9/BaseOS/x86_64/os/ --cost=100

2
common/rocky/services.cfg

@ -0,0 +1,2 @@
### SYSTEM SERVICES
services --enabled='NetworkManager'
Loading…
Cancel
Save