summaryrefslogtreecommitdiffstats
path: root/examples/playbooks/4114/transform-with-missing-role-and-modules.transformed.yml
blob: 10ae898f4714eeac09edae06eb5718d4abbc2a34 (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
      ansible.builtin.debug: # <-- this should be converted to fqcn
        msg: some message!