11-25 update

This commit is contained in:
2025-11-28 17:25:49 -08:00
parent 8a9fdc565e
commit 5f83cd75d6
3 changed files with 37 additions and 3 deletions

View File

@ -3,6 +3,12 @@
# optionally it creates a new inventory file on the jenkins host
# if the appropriate variable is declared
- name: Install iptables-persistent
apt:
name:
- iptables-persistent
state: present
# check interfaces
- name: check interfaces for vmpbr0
shell: ip -o -4 ad
@ -37,7 +43,7 @@
- name: Reboot
when: '"vmpbr0" not in ip_ad_output.stdout'
command: "reboot now"
shell: "( sleep 5 ; reboot now ) & "
ignore_errors: yes
...