Created
August 14, 2012 13:19
-
-
Save benhosmer/3349188 to your computer and use it in GitHub Desktop.
A simple BASH script to install salt.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# A shell script to install saltstack on Ubuntu | |
sudo apt-get install python-software-properties | |
sudo add-apt-repository ppa:saltstack/salt | |
sudo apt-get update | |
# You may want both salt-master and salt-minion, uncomment one or both depending on what you need | |
#sudo apt-get install salt-master | |
#sudo apt-get install salt-minion |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment