Il sito funziona meglio con JavaScript.
Home
Esplora
Aiuto
Registrati
Accedi
ka
/
ansible-role-reboot
Segui
1
Vota
0
Forka
0
Codice
Problemi
0
Pull Requests
0
Rilasci
0
Wiki
Attività
Sfoglia il codice sorgente
current
master
Markus Katharina Brechtel
7 anni fa
parent
75dfb344a2
commit
d251cedd11
2 ha cambiato i file
con
9 aggiunte
e
2 eliminazioni
Visualizzazione separata
Diff Options
Show Stats
Download Patch File
Download Diff File
+2
-0
defaults/main.yml
+7
-2
tasks/main.yml
+ 2
- 0
defaults/main.yml
Vedi File
@@ -0,0 +1,2 @@
reboot_delay: 120
reboot_timeout: 300
+ 7
- 2
tasks/main.yml
Vedi File
@@ -1,10 +1,15 @@
---
- name: reboot
command: shutdown -r
1
command: shutdown -r
30
async: 0
poll: 0
ignore_errors: true
- name: wait for ssh
local_action: wait_for host={{ ansible_host | default(inventory_hostname) }} port=22 search_regex=OpenSSH delay={{ reboot_delay | default(120) }} state=started
local_action: wait_for host={{ ansible_host | default(inventory_hostname) }} port=22 search_regex=OpenSSH delay={{ reboot_delay }} timeout={{ reboot_timeout }} state=started
- name: try to connect to ssh
setup:
retries: 10
delay: 5
Write
Preview
Loading…
Annulla
Salva