infra-nimbus/ansible/restart.yml
Jakub Sokołowski 29e7870a8b
nimbus.prater: decomission last two remaining hosts
The testnet is dead, and keeping it around is not necessary.

Signed-off-by: Jakub Sokołowski <jakub@status.im>
2024-04-19 10:13:23 +02:00

27 lines
712 B
YAML

---
- name: Restart all nodes on all hosts
hosts:
- nimbus.mainnet
- nimbus.sepolia
- nimbus.holesky
become: false
tasks:
- name: Restart nodes on Linux
when: ansible_system == "Linux"
command: |
sudo systemctl --no-block restart 'beacon-node-*'
- name: Restart nodes on MacOS
when: ansible_system == "Darwin"
shell: |
sudo launchctl list | \
awk '/status.beacon-node/{print "system/$3"}' | \
xargs -n1 sudo launchctl kickstart -k
- name: Restart nodes on Windows
when: ansible_system == "Win32NT"
win_shell: |
Get-Service | \
where Name -Match '^beacon-node' | \
Restart-Service