您的位置:首页 > 博客中心 > 数据库 >

ansible runner把结果写入MongoDB

时间:2022-03-14 00:24



root@ubuntu12:~/ansible# vi mongo.py

import sys

import pymongo

import ansible.runner


def log(res):

        conn = pymongo.Connection(host="localhost", port=27017)

        db = conn ["ansible"]

        if type(res) == dict:

          db.ansible.insert(res)


if __name__ == "__main__":

       runner = ansible.runner.Runner(

          module_name = ‘shell‘,

          module_args = ‘ls -l‘,

          pattern = ‘centos5‘,

         )


       result = runner.run()

       log(result)



热门排行

今日推荐

热门手游