cc82349363
Makes those files conformant with current linting rules and avoids linting errors when we need to toch them again. Previous doing "pre-commit run -a" uncovered these errors, now is no longer reporting any other errors. Change-Id: Ie4cf229c8f11c2b55b323eac23c89483b26d3781
32 lines
578 B
YAML
32 lines
578 B
YAML
---
|
|
|
|
- name: Add the virthost to the inventory
|
|
hosts: localhost
|
|
tasks:
|
|
- name: Add virthost
|
|
add_host:
|
|
name: "{{ virthost }}"
|
|
groups: "virthost"
|
|
ansible_fqdn: "{{ virthost }}"
|
|
ansible_user: "root"
|
|
ansible_host: "{{ virthost }}"
|
|
tags:
|
|
- provision
|
|
|
|
- name: Inventory the virthost
|
|
hosts: localhost
|
|
gather_facts: true
|
|
roles:
|
|
- tripleo-inventory
|
|
tags:
|
|
- provision
|
|
|
|
- include: teardown.yml
|
|
|
|
- include: provision.yml
|
|
|
|
- name: Build test packages using DLRN
|
|
hosts: virthost
|
|
roles:
|
|
- build-test-packages
|