All kickstart files - this is public; the puppet configs are private
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
622 B

### REPOSITORIES
# kickstart repo command with --install doesn't pull down GPG Keys
# installing the official rpm for each project will handle that
echo "## BEGIN: CentOS9 post.sh..."
echo "Configuring additional system repositories: adding EPEL Repo"
rpm -Uvh https://dl.fedoraproject.org/pub/epel/epel-release-latest-9.noarch.rpm
echo "Adding additional packages"
dnf -y install epel-release policycoreutils-python-utils
#echo "Puppet Labs"
#rpm -Uvh https://yum.puppet.com/puppet5/puppet5-release-el-8.noarch.rpm
### UPGRADE
echo "Forcing an upgrade of the system"
dnf -y upgrade
echo "## END: CentOS9 post.sh..."