Ansinterface/config.py

18 lines
398 B
Python
Raw Permalink Normal View History

2023-12-19 12:48:06 +00:00
'''
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