aboutsummaryrefslogtreecommitdiffstats
path: root/resources/tools/testbed-setup/ansible/roles/common/handlers/main.yaml
blob: f994afdc6045a6c5fb550d5b61ca5af67a1d2efd (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
---
# file: roles/common/handlers/main.yaml

- name: IPMI specific
  import_tasks: ipmi.yaml
  when: inventory_ipmi_hostname is defined
  tags: ipmi-handlers

- name: CIMC specific
  import_tasks: cimc.yaml
  when: inventory_cimc_hostname is defined
  tags: cimc-handlers

- name: Update GRUB
  command: update-grub
  tags: update-grub

- name: Reboot server
  reboot:
    reboot_timeout: 3600
  tags: reboot-server

- name: Wait for server to restart
  wait_for:
    host: '{{ inventory_hostname }}'
    search_regex: OpenSSH
    port: 22
    delay: 60
    timeout: 3600
  tags: reboot-server