Improved on the post-install provisioning
This commit is contained in:
9
scripts/debian-setup.sh
Normal file
9
scripts/debian-setup.sh
Normal 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
7
scripts/freebsd-setup.sh
Normal 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
7
scripts/rhel-setup.sh
Normal file
@ -0,0 +1,7 @@
|
||||
#!/bin/sh
|
||||
|
||||
sudo dnf update -y
|
||||
|
||||
sudo dnf install -y vim
|
||||
|
||||
wget -O - https://bootstrap.saltstack.com | sudo sh
|
Reference in New Issue
Block a user