介绍
使用方法
1. 给此脚本添加执行权限
2. 执行此脚本
注意
此脚本不能命名为 json.py
脚本
#!/usr/bin/python3
import json
hostlist = {}
hostlist["web"] = ["192.168.100.101", "192.168.100.102"]
hostlist["db"] = {
"hosts" :["192.168.100.121", "192.168.100.122"],
"vars" :{"ansible_ssh_user":"root", "ansible_ssh_pass":"1"}
}
hostlist["192.168.100.110"] = {
"ansible_ssh_user":"root", "ansible_ssh_pass":"pwd"
}
print(json.dumps(hostlist))