Last active
January 1, 2016 22:59
-
-
Save martinhbramwell/8214071 to your computer and use it in GitHub Desktop.
Manual installation of a salt-minion
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
| sudo apt-get install -y git python-dev python-pip libyaml-dev python-zmq m2crypto | |
| sudo pip install pyzmq | |
| sudo pip install PyYAML | |
| sudo pip install pycrypto | |
| sudo pip install msgpack-python | |
| sudo pip install jinja2 | |
| sudo pip install psutil | |
| # | |
| cd ~ | |
| mkdir -p projects | |
| cd projects | |
| rm -fr salt | |
| # | |
| git clone https://github.com/saltstack/salt.git | |
| # | |
| sudo mkdir -p /etc/salt | |
| sudo cp salt/conf/minion /etc/salt/ | |
| # | |
| #### sudo pip install ./salt |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment