Improved on the post-install provisioning

This commit is contained in:
2024-04-21 01:54:33 -04:00
parent a051724f38
commit 4e00aa8ba7
11 changed files with 64 additions and 7 deletions

9
scripts/debian-setup.sh Normal file
View File

@ -0,0 +1,9 @@
#!/bin/sh
# Debian/Ubuntu steps
sudo apt update
sudo apt upgrade -y
sudo apt install -y vim
wget -O - https://bootstrap.saltstack.com | sudo sh

7
scripts/freebsd-setup.sh Normal file
View File

@ -0,0 +1,7 @@
#!/bin/sh
# FreeBSD steps
sudo pkg update
sudo pkg upgrade -y
sudo pkg install -y vim py39-salt

7
scripts/rhel-setup.sh Normal file
View File

@ -0,0 +1,7 @@
#!/bin/sh
sudo dnf update -y
sudo dnf install -y vim
wget -O - https://bootstrap.saltstack.com | sudo sh