%PDF- %PDF-
Direktori : /proc/self/root/usr/lib/python2.7/site-packages/salt/cloud/deploy/ |
Current File : //proc/self/root/usr/lib/python2.7/site-packages/salt/cloud/deploy/RHEL6.sh |
#!/bin/bash # This legacy script pre-dates the salt-bootstrap project. In most cases, the # bootstrap-salt.sh script is the recommended script for installing salt onto # a new minion. However, that may not be appropriate for all situations. This # script remains to help fill those needs, and to provide an example for users # needing to write their own deploy scripts. rpm -Uvh --force http://mirrors.kernel.org/fedora-epel/6/x86_64/epel-release-6-8.noarch.rpm yum -y install salt-minion --enablerepo epel-testing mkdir -p /etc/salt/pki echo '{{ vm['priv_key'] }}' > /etc/salt/pki/minion.pem echo '{{ vm['pub_key'] }}' > /etc/salt/pki/minion.pub cat > /etc/salt/minion <<EOF {{minion}} EOF /sbin/chkconfig salt-minion on service salt-minion start