Skip to content

Instantly share code, notes, and snippets.

@benhosmer
Created August 14, 2012 13:19
Show Gist options
  • Save benhosmer/3349188 to your computer and use it in GitHub Desktop.
Save benhosmer/3349188 to your computer and use it in GitHub Desktop.
A simple BASH script to install salt.
#!/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