Fix linting issues and adjust how we test the prep role. Change-Id: If6209c7e1ec4cb45165223ead59d1b97771416d5
14 lines
280 B
YAML
14 lines
280 B
YAML
---
|
|
- name: Converge
|
|
hosts: all
|
|
tasks:
|
|
|
|
- name: Test known collection filter
|
|
set_fact:
|
|
test_var: "{{ 'test' | tripleo.operator.shell_arg_list(parameter='--test') }}"
|
|
|
|
- name: Assert value
|
|
assert:
|
|
that:
|
|
- test_var == "--test test"
|