├── .gitattributes ├── LICENSE ├── README.md ├── easyAnsible.z01 ├── easyAnsible.z02 ├── easyAnsible.z03 ├── easyAnsible.z04 ├── easyAnsible.z05 ├── easyAnsible.z06 ├── easyAnsible.z07 ├── easyAnsible.z08 ├── easyAnsible.z09 ├── easyAnsible.z10 ├── easyAnsible.zip ├── screenshots ├── 001.home.png ├── 002.job.png ├── 003.deploy.png ├── 004.deploy-input.png ├── 005.deploy-info.png ├── 006.help.png └── 007.deploy-monitor.png └── xx.py /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junneyang/easy-ansible/HEAD/.gitattributes -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junneyang/easy-ansible/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junneyang/easy-ansible/HEAD/README.md -------------------------------------------------------------------------------- /easyAnsible.z01: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junneyang/easy-ansible/HEAD/easyAnsible.z01 -------------------------------------------------------------------------------- /easyAnsible.z02: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junneyang/easy-ansible/HEAD/easyAnsible.z02 -------------------------------------------------------------------------------- /easyAnsible.z03: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junneyang/easy-ansible/HEAD/easyAnsible.z03 -------------------------------------------------------------------------------- /easyAnsible.z04: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junneyang/easy-ansible/HEAD/easyAnsible.z04 -------------------------------------------------------------------------------- /easyAnsible.z05: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junneyang/easy-ansible/HEAD/easyAnsible.z05 -------------------------------------------------------------------------------- /easyAnsible.z06: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junneyang/easy-ansible/HEAD/easyAnsible.z06 -------------------------------------------------------------------------------- /easyAnsible.z07: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junneyang/easy-ansible/HEAD/easyAnsible.z07 -------------------------------------------------------------------------------- /easyAnsible.z08: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junneyang/easy-ansible/HEAD/easyAnsible.z08 -------------------------------------------------------------------------------- /easyAnsible.z09: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junneyang/easy-ansible/HEAD/easyAnsible.z09 -------------------------------------------------------------------------------- /easyAnsible.z10: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junneyang/easy-ansible/HEAD/easyAnsible.z10 -------------------------------------------------------------------------------- /easyAnsible.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junneyang/easy-ansible/HEAD/easyAnsible.zip -------------------------------------------------------------------------------- /screenshots/001.home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junneyang/easy-ansible/HEAD/screenshots/001.home.png -------------------------------------------------------------------------------- /screenshots/002.job.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junneyang/easy-ansible/HEAD/screenshots/002.job.png -------------------------------------------------------------------------------- /screenshots/003.deploy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junneyang/easy-ansible/HEAD/screenshots/003.deploy.png -------------------------------------------------------------------------------- /screenshots/004.deploy-input.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junneyang/easy-ansible/HEAD/screenshots/004.deploy-input.png -------------------------------------------------------------------------------- /screenshots/005.deploy-info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junneyang/easy-ansible/HEAD/screenshots/005.deploy-info.png -------------------------------------------------------------------------------- /screenshots/006.help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junneyang/easy-ansible/HEAD/screenshots/006.help.png -------------------------------------------------------------------------------- /screenshots/007.deploy-monitor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junneyang/easy-ansible/HEAD/screenshots/007.deploy-monitor.png -------------------------------------------------------------------------------- /xx.py: -------------------------------------------------------------------------------- 1 | import os 2 | --------------------------------------------------------------------------------