003 File Manager
Current Path:
/usr/local/lib/python3.8/site-packages/salt/cloud/deploy
usr
/
local
/
lib
/
python3.8
/
site-packages
/
salt
/
cloud
/
deploy
/
📁
..
📄
Arch-git.sh
(864 B)
📄
Arch.sh
(677 B)
📄
Debian-git.sh
(1.27 KB)
📄
Debian.sh
(1.02 KB)
📄
Fedora-git.sh
(1.16 KB)
📄
Fedora.sh
(982 B)
📄
FreeBSD-git.sh
(1000 B)
📄
FreeBSD.sh
(938 B)
📄
None.sh
(407 B)
📄
RHEL5-git.sh
(913 B)
📄
RHEL5.sh
(725 B)
📄
RHEL6-git.sh
(934 B)
📄
RHEL6.sh
(751 B)
📄
SmartOS.sh
(1.01 KB)
📄
Ubuntu-git.sh
(1.43 KB)
📄
Ubuntu.sh
(1.19 KB)
📄
bootstrap-salt.sh
(295.53 KB)
📄
curl-bootstrap-git.sh
(736 B)
📄
curl-bootstrap.sh
(709 B)
📄
python-bootstrap.sh
(808 B)
📄
wget-bootstrap-nocert.sh
(758 B)
📄
wget-bootstrap.sh
(712 B)
Editing: Debian-git.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. 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 # echo deb http://ftp.debian.org/debian experimental main | tee -a /etc/apt/sources.list echo deb http://backports.debian.org/debian-backports squeeze-backports main | tee -a /etc/apt/sources.list echo deb http://debian.madduck.net/repo squeeze-backports main | tee -a /etc/apt/sources.list wget -q -O- "http://debian.madduck.net/repo/gpg/archive.key" | apt-key add - apt-get update apt-get install -y -o DPkg::Options::=--force-confold salt-minion git-core # minion will be started automatically by install service salt-minion stop rm -rf /usr/share/pyshared/salt* rm -rf /usr/bin/salt-* mkdir -p /root/git cd /root/git git clone git://github.com/saltstack/salt.git cd salt python setup.py install --install-layout=deb service salt-minion start
Upload File
Create Folder