err23211 发表于 2015-1-29 09:08:41

初识saltstack之Quick Install

Quick Install
Many popular distributions will be able to install the salt minion by executing the bootstrap script:

wget -O - https://bootstrap.saltstack.com | sudo sh

Run the following script to install just the Salt Master:

curl -L https://bootstrap.saltstack.com | sudo sh -s -- -M -N

To install the develop branch of   Salt (if you want to - -)
$ git clone -b develop https://github.com/saltstack/salt.git$ cd salt && python setup.py install$ salt-master --version$ salt-master -l debug

页: [1]
查看完整版本: 初识saltstack之Quick Install