Created
March 28, 2012 22:03
-
-
Save araddon/2230949 to your computer and use it in GitHub Desktop.
Salt-Minion boostrap installer
This file contains hidden or 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
| # clear any previous sudo permission | |
| sudo -k | |
| # run inside sudo | |
| sudo sh <<SCRIPT | |
| apt-get install --yes --force-yes -q build-essential | |
| apt-get install --yes --force-yes -q -y python-software-properties | |
| add-apt-repository ppa:saltstack/salt | |
| apt-get update | |
| apt-get install --yes --force-yes -q -y salt-minion # on the minion | |
| SCRIPT |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment