blob: 9a5f831b0b025dbf39b7837c3e9359155234555a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
localhost ansible_connection=local
{% if installer != 'manual' %}
[{{ installer_master_group[installer] }}]
{{ installer_master_host }}
{% else %}
[SUT]
# Add hosts in system under test, example::
#
# host-under-test ansible_host=192.168.10.1 ansible_port=5022 ansile_user=root
#
# See http://docs.ansible.com/ansible/intro_inventory.html for details
{% endif %}
|