aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/roles/common/handlers
diff options
context:
space:
mode:
authorEgor Tensin <Egor.Tensin@gmail.com>2021-08-09 13:38:14 +0300
committerEgor Tensin <Egor.Tensin@gmail.com>2021-08-09 13:38:14 +0300
commit2f51ad4c36a10a3e1cb7256351ee1cdf031bf6ca (patch)
tree491ce846f5bcd204caf855344a2ae412643267ba /roles/common/handlers
parentjoin handlers using listen: topic (diff)
downloadmaintenance-2f51ad4c36a10a3e1cb7256351ee1cdf031bf6ca.tar.gz
maintenance-2f51ad4c36a10a3e1cb7256351ee1cdf031bf6ca.zip
factor out handlers to role "common"
Diffstat (limited to 'roles/common/handlers')
-rw-r--r--roles/common/handlers/main.yml11
1 files changed, 11 insertions, 0 deletions
diff --git a/roles/common/handlers/main.yml b/roles/common/handlers/main.yml
new file mode 100644
index 0000000..e7fa3e9
--- /dev/null
+++ b/roles/common/handlers/main.yml
@@ -0,0 +1,11 @@
+- name: Reboot
+ reboot:
+ # Don't reboot yourself accidentally:
+ when: 'ansible_env["SSH_CLIENT"].split()[0] not in ansible_all_ipv4_addresses'
+ listen: reboot
+
+- name: Wait for connectivity
+ # One of the nodes is the VPN server connecting all the other nodes, wait
+ # until all of them are back up:
+ wait_for_connection:
+ listen: reboot