e749223328
Role installs the diskimage-builder in a virtualenv. Change-Id: I0801daa6d5b8039bfbdefb7357942b1c5a58732f
11 lines
247 B
YAML
11 lines
247 B
YAML
- hosts: all
|
|
roles:
|
|
- ensure-dib
|
|
tasks:
|
|
- name: Run build-disk-image
|
|
command: "{{ ensure_dib_command }} --help"
|
|
register: dib
|
|
- name: Assert dib being executed successfully
|
|
assert:
|
|
that: dib is successful
|