zoukankan      html  css  js  c++  java
  • python将ansible配置转为json格式实例代码

    [webserver]
    192.168.204.70
    192.168.204.71

    [dbserver]
    192.168.204.72
    192.168.204.73
    192.168.204.75

    [proxy]
    192.168.204.76
    192.168.204.77
    192.168.204.78

    [test]
    192.168.204.79
    192.168.204.80

    [haproxy]
    192.168.205.82
    192.168.204.83

     用python将ansible配置转为json格式,python代码如下:

    import ConfigParser
    import json
    dict_result
    = {} cf = ConfigParser.ConfigParser(allow_no_value=True) cf.read('/etc/ansible/hosts.test')
    secs
    = cf.sections()
    for sec in secs: dict_result[sec] = cf.options(sec) print json.dumps(dict_result)

    转换结果如下(python版本使用2.7版本的):

    /usr/local/python/bin/python /tmp/test.py
    {"test": ["192.168.204.79", "192.168.204.80"], "haproxy": ["192.168.205.82", "192.168.204.83"], "webserver": ["192.168.204.70", "192.168.204.71"], "proxy": ["192.168.204.76", "192.168.204.77", "192.168.204.78"], "dbserver": ["192.168.204.72", "192.168.204.73", "192.168.204.75"]}

     转换成json文件就方便在前端进行展示了,使用Flask提供json格式的接口如下

    #获取ansible分组
    @app.route('/web_test/ansible')
    def web_test_ansible(): dict_result = {} cf = ConfigParser.ConfigParser(allow_no_value=True) cf.read('/etc/ansible/hosts.test')
    secs
    = cf.sections() for sec in secs: dict_result[sec] = cf.options(sec) return json.dumps(dict_result)
  • 相关阅读:
    用迭代法求x=a−−√。求平方根的迭代公式为 xn+1 = 12(xn + axn) 要求前后两次求出的x的差的绝对值小于10−5
    C 数组
    fofa自动化爬虫脚本更新+详解
    c# winfrom接收http协议body数据
    FLW要求
    modbus工具问题
    2020年总结
    WIFI K型热电偶传感器
    泛海三江烟感JTY-GD-H361 V2.7
    工位终端
  • 原文地址:https://www.cnblogs.com/chengxuyonghu/p/13763686.html
Copyright © 2011-2022 走看看