diff --git a/scripts/debian-install.sh b/scripts/debian-install.sh index 27e3933..67e5e1c 100644 --- a/scripts/debian-install.sh +++ b/scripts/debian-install.sh @@ -6,4 +6,3 @@ sudo apt upgrade -y sudo apt install -y vim -wget -O - https://bootstrap.saltstack.com | sudo sh diff --git a/scripts/freebsd-install.sh b/scripts/freebsd-install.sh index 5b5876b..e7abcee 100644 --- a/scripts/freebsd-install.sh +++ b/scripts/freebsd-install.sh @@ -4,7 +4,9 @@ sudo pkg update sudo pkg upgrade -y -sudo pkg install -y vim py39-salt py39-tornado - # Delete /etc/hostid so it gets regenerated sudo rm /etc/hostid + +# Install Puppet +sudo pkg install -y puppet7 + diff --git a/scripts/initial-setup.sh b/scripts/initial-setup.sh index ed70e4a..eddb914 100644 --- a/scripts/initial-setup.sh +++ b/scripts/initial-setup.sh @@ -21,7 +21,6 @@ if [ "$OS" = 'freebsd' ]; then sysrc hostname="$HOSTNAME.$DOMAIN" # Install Puppet - pkg install -y puppet7 echo -e "[agent]\nserver = $PUPPET_MASTER" > /usr/local/etc/puppet/puppet.conf sysrc puppet_enable="YES" else diff --git a/scripts/rhel-install.sh b/scripts/rhel-install.sh index 129c39a..306f227 100644 --- a/scripts/rhel-install.sh +++ b/scripts/rhel-install.sh @@ -4,4 +4,3 @@ sudo dnf update -y sudo dnf install -y vim -wget -O - https://bootstrap.saltstack.com | sudo sh