1c6b947bf2
- Fixes 206 errors and removed the skip. - Also replaces revision with latest tag (pushed today) Bug: https://bugs.launchpad.net/tripleo/+bug/1848512 Change-Id: I69d75ba9de8ab0e91eb45fd4f9febfdb28cdcb3a
18 lines
417 B
YAML
18 lines
417 B
YAML
---
|
|
- name: Add virthost to inventory
|
|
hosts: localhost
|
|
tasks:
|
|
- name: Add the virthost to the inventory
|
|
add_host:
|
|
name: "{{ virthost }}"
|
|
groups: "virthost"
|
|
ansible_fqdn: "{{ virthost }}"
|
|
ansible_user: "root"
|
|
ansible_host: "{{ virthost }}"
|
|
|
|
- name: Clean up tripleo packages and libvirt
|
|
hosts: virthost
|
|
gather_facts: false
|
|
roles:
|
|
- virthost-full-cleanup
|