blob: c166dd560d858e55e295d1851c0a191a709cd0e5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
---
- name: Reproducer for bug 4114
hosts: localhost
roles:
- this_role_is_missing
tasks:
- name: Task referring to a missing module
this_module_does_not_exist:
foo: bar
- name: Use raw to echo
debug: # <-- this should be converted to fqcn
msg: some message!
|