
1. add removing ansible run env in refresh.sh 2. update ansible_installer.py for generate ansible.cfg Change-Id: I5da9cec07f063a4879262f7a726270439031ec1d
14 lines
378 B
Plaintext
14 lines
378 B
Plaintext
NAME = 'ansible_installer'
|
|
INSTANCE_NAME = 'ansible_installer'
|
|
SETTINGS = {
|
|
'ansible_dir': '/var/ansible',
|
|
'ansible_run_dir': '/var/ansible/run',
|
|
'ansible_config': 'ansible.cfg',
|
|
'playbook_file': 'site.yml',
|
|
'inventory_file': 'inventory.yml',
|
|
'group_variable': 'all',
|
|
'etc_hosts_path': 'roles/common/templates/hosts',
|
|
'runner_dirs': ['roles']
|
|
}
|
|
|