summaryrefslogtreecommitdiffstats
path: root/test/integration/targets/collections/collection_root_user/ansible_collections/testns/testcoll/roles/test_fqcn_handlers/tasks/main.yml
blob: 6eadb7c2afbb486f7a49056b4c196fc2d12aec55 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
- name: Fire fqcn handler 1
  debug:
    msg: Fire fqcn handler
  changed_when: true
  notify:
    - 'testns.testcoll.common_handlers : test_fqcn_handler'
    - 'common_handlers : test_fqcn_handler'
    - 'test_fqcn_handler'

- debug:
    msg: Fire fqcn handler with role name
  changed_when: true
  notify:
    - 'testns.testcoll.common_handlers : common_handlers test_fqcn_handler'
    - 'common_handlers : common_handlers test_fqcn_handler'
    - 'common_handlers test_fqcn_handler'