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.
20 lines
555 B
20 lines
555 B
### 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 "EPEL"
|
|
rpm -Uvh https://dl.fedoraproject.org/pub/epel/epel-release-latest-8.noarch.rpm
|
|
|
|
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
|
|
|
|
|