summaryrefslogtreecommitdiffstats
path: root/test/integration/targets/handlers/roles/test_handlers/tasks/main.yml
blob: a857dacf6e2903a57654dade40476967f9d6eb40 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
# test code for the async keyword
# (c) 2014, James Tanner <tanner.jc@gmail.com>

# This file is part of Ansible
#
# Ansible is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# Ansible is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with Ansible.  If not, see <http://www.gnu.org/licenses/>.


- name: reset handler_called variable to false for all hosts
  set_fact:
    handler_called: False
  tags: scenario1

- name: notify the handler for host A only
  shell: echo
  notify:
    - set handler fact
  when: inventory_hostname == 'A'
  tags: scenario1

- name: force handler execution now
  meta: "flush_handlers"
  tags: scenario1

- debug: var=handler_called
  tags: scenario1

- name: validate the handler only ran on one host
  assert:
    that:
    - "inventory_hostname == 'A' and handler_called == True or handler_called == False"
  tags: scenario1

- name: 'test notify with loop'
  debug: msg='a task'
  changed_when: item == 1
  notify: test handler
  with_items:
      - 1
      - 2
  tags: scenario2