Last active
August 29, 2015 14:17
-
-
Save speedlight/da4dfc25e5f0f9f878aa to your computer and use it in GitHub Desktop.
Salt install for debian and centos5
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
For Debian just change the name of the branch: | |
echo "deb http://debian.saltstack.com/debian {wheezy|jessie}-saltstack main" > /etc/apt/sources.list.d/salt.list | |
wget -q -O- "http://debian.saltstack.com/debian-salt-team-joehealy.gpg.key" | apt-key add - | |
apt-get update | |
----------- | |
For Centos5 the repo is located at copr.fedoraproject.org/coprs/saltstack/salt-el5/ so a one-liner for have a minion installed: | |
cd /etc/yum.repos.d/; wget http://copr.fedoraproject.org/coprs/saltstack/salt-el5/repo/epel-5/saltstack-salt-el5-epel-5.repo; yum makecache; yum -y install salt-minion | |
---------- |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment