blob: 0347e450881d705c006553e2ab950f31dd2ce468 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
localhost ansible_connection=local
{% if installer_type != 'manual' %}
[{{ installer_group[installer_type] }}]
{{ installer_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 %}
|