zoukankan      html  css  js  c++  java
  • Saltstack module hosts 详解

    hosts.has_pair

    Return true if the alias is set
    
    CLI Example:
    
        salt '*' hosts.has_pair <ip> <alias>
    

    hosts.get_ip

    Return the ip associated with the named host
    
    CLI Example:
    
        salt '*' hosts.get_ip <hostname>
    

    hosts.get_alias

    Return the list of aliases associated with an ip
    
    Aliases (host names) are returned in the order in which they
    appear in the hosts file.  If there are no aliases associated with
    the IP, an empty list is returned.
    
    CLI Example:
    
        salt '*' hosts.get_alias <ip addr>
    

    hosts.list_hosts

    Return the hosts found in the hosts file in this format::
    
        {'<ip addr>': ['alias1', 'alias2', ...]}
    
    CLI Example:
    
        salt '*' hosts.list_hosts
    

    hosts.add_host

    Add a host to an existing entry, if the entry is not in place then create
    it with the given host
    
    CLI Example:
    
        salt '*' hosts.add_host <ip> <alias>
    

    hosts.rm_host

    Remove a host entry from the hosts file
    
    CLI Example:
    
        salt '*' hosts.rm_host <ip> <alias>
    

    hosts.set_host

    Set the host entry in the hosts file for the given ip, this will overwrite
    any previous entry for the given ip
    
    Changed in version 2016.3.0
        If ``alias`` does not include any host names (it is the empty
        string or contains only whitespace), all entries for the given
        IP address are removed.
    
    CLI Example:
    
        salt '*' hosts.set_host <ip> <alias>
  • 相关阅读:
    Nginx降权启动
    Tomcat降权启动
    【转载】XSS学习笔记
    仪仗队(容斥,欧拉,打表)
    2012蓝桥杯
    HPU周赛题目解析
    蓝桥杯真题集2011
    cf公式专场-续
    24点游戏&&速算24点(dfs)
    Parallelogram Counting(平行四边形个数,思维转化)
  • 原文地址:https://www.cnblogs.com/randomlee/p/Saltstack_module_hosts.html
Copyright © 2011-2022 走看看