18 lines
398 B
Python
18 lines
398 B
Python
'''
|
|
ansible_scripts : location of the playbooks
|
|
default_hosts: default hosts file path
|
|
binary : ansible binary path (use "whereis ansible-playbook" to find it)
|
|
'''
|
|
|
|
class path:
|
|
ansible_scripts = '/data/Ansible-Playbook/'
|
|
default_hosts = '/data/Ansible-Playbook/hosts'
|
|
binary = '/usr/bin/ansible-playbook '
|
|
|
|
class flask_config:
|
|
port=8000
|
|
host='0.0.0.0'
|
|
thread=True
|
|
debug=False
|
|
|