Add final pvcnoded restart

This commit is contained in:
Joshua Boniface 2023-09-01 15:42:30 -04:00
parent 7e09ee7d21
commit 71d956dab7
1 changed files with 17 additions and 0 deletions

View File

@ -69,3 +69,20 @@
become: yes become: yes
when: newhost is defined and newhost when: newhost is defined and newhost
tags: always tags: always
- name: wait 30 seconds for system to stabilize
pause:
seconds: 30
become: no
connection: local
when: newhost is defined and newhost
tags: always
- name: restart pvcnoded on first install
service:
name: pvcnoded
state: restarted
throttle: 1
ignore_errors: yes
when: newhost is defined and newhost
tags: always