zoukankan      html  css  js  c++  java
  • salt-minion安装脚本

    #!/bin/bash
    
    cd /usr/local/src/
    wget http://mirrors.sohu.com/fedora-epel/6/x86_64/epel-release-6-8.noarch.rpm
    rpm -ivh epel-release-6-8.noarch.rpm
    
    wget http://apt.sw.be/redhat/el6/en/x86_64/rpmforge/RPMS/rpmforge-release-0.5.3-1.el6.rf.x86_64.rpm
    rpm -Uvh rpmforge-release-0.5.3-1.el6.rf.x86_64.rpm
    yum install python-jinja2
    
    yum -y install salt-minion --enablerepo=epel-testing
    
    IP=`ifconfig eth1 | grep -i bcast | awk '{print $2}'| awk  -F : '{print $2}'`
    HOSTNAME=yqk_app
    ID=$IP
    MASTER=123.56.193.121
    
    echo "master: $MASTER" >>/etc/salt/minion
    echo "id: $HOSTNAME_$ID" >> /etc/salt/minion
    
    service salt-minion restart
    chkconfig salt-minion on
    exit 0
    

      

  • 相关阅读:
    文件操作
    安全名词
    浏览器并发连接
    acm 2057
    acm 2072
    acm 2084
    acm 2044
    acm 2043
    acm 2032
    acm 2005
  • 原文地址:https://www.cnblogs.com/xmzncc/p/5789581.html
Copyright © 2011-2022 走看看