2018-12-07 17:22:53 +00:00
|
|
|
---
|
|
|
|
- hosts: all
|
|
|
|
roles:
|
|
|
|
- role: standard-test-basic
|
|
|
|
tags:
|
|
|
|
- classic
|
|
|
|
tests:
|
|
|
|
- list-devices:
|
2018-12-07 19:07:06 +00:00
|
|
|
dir: .
|
|
|
|
run: python3 /usr/share/doc/python3-blivet/examples/list_devices.py
|
2018-12-07 17:22:53 +00:00
|
|
|
|
2018-12-07 19:07:06 +00:00
|
|
|
tasks:
|
2018-12-07 17:22:53 +00:00
|
|
|
- name: copy out blivet logs
|
|
|
|
fetch:
|
|
|
|
dest: "{{ artifacts }}"
|
|
|
|
src: "{{ item }}"
|
|
|
|
flat: yes
|
|
|
|
loop: ["/tmp/blivet.log", "/tmp/program.log"]
|