1111
This commit is contained in:
@@ -588,6 +588,58 @@
|
|||||||
esac
|
esac
|
||||||
changed_when: false
|
changed_when: false
|
||||||
|
|
||||||
|
|
||||||
|
# ============================ PHASE 0 (LAST): DEV2 STATE GUARD (OLD PPP EXPECTED) ============================
|
||||||
|
- name: "PHASE 0 (LAST) | DEV2 check: ppp0 has IPv4 (old expected) via wrapper"
|
||||||
|
delegate_to: localhost
|
||||||
|
ansible.builtin.shell: |
|
||||||
|
export DEV2_CMD="ip -4 addr show dev ppp0 2>/dev/null | grep -m1 'inet ' >/dev/null 2>&1 && echo YES || echo NO"
|
||||||
|
{{ dev2_exec_cmd }}
|
||||||
|
args: { executable: /bin/bash }
|
||||||
|
register: dev2_ppp0_has_ipv4
|
||||||
|
changed_when: false
|
||||||
|
failed_when: false
|
||||||
|
|
||||||
|
- name: "PHASE 0 (LAST) | DEV2 check: eth0.4000 exists (new/migrated indicator) via wrapper"
|
||||||
|
delegate_to: localhost
|
||||||
|
ansible.builtin.shell: |
|
||||||
|
export DEV2_CMD="ip link show eth0.4000 >/dev/null 2>&1 && echo YES || echo NO"
|
||||||
|
{{ dev2_exec_cmd }}
|
||||||
|
args: { executable: /bin/bash }
|
||||||
|
register: dev2_eth04000_exists
|
||||||
|
changed_when: false
|
||||||
|
failed_when: false
|
||||||
|
|
||||||
|
- name: "PHASE 0 (LAST) | Summarize DEV2 pre-migration eligibility"
|
||||||
|
delegate_to: localhost
|
||||||
|
ansible.builtin.set_fact:
|
||||||
|
dev2_ppp_old_ok: "{{ (dev2_ppp0_has_ipv4.stdout | default('') | trim) == 'YES' }}"
|
||||||
|
dev2_eth04000_present: "{{ (dev2_eth04000_exists.stdout | default('') | trim) == 'YES' }}"
|
||||||
|
dev2_pre_migration_ok: >-
|
||||||
|
{{
|
||||||
|
((dev2_ppp0_has_ipv4.stdout | default('') | trim) == 'YES')
|
||||||
|
and
|
||||||
|
((dev2_eth04000_exists.stdout | default('') | trim) != 'YES')
|
||||||
|
}}
|
||||||
|
changed_when: false
|
||||||
|
|
||||||
|
- name: "PHASE 0 (LAST) | Stop if DEV2 is NOT a pure old PPP device"
|
||||||
|
when: not (dev2_pre_migration_ok | bool)
|
||||||
|
delegate_to: localhost
|
||||||
|
ansible.builtin.debug:
|
||||||
|
msg:
|
||||||
|
- "We shall not continue: DEV2 is not a pure old PPP device."
|
||||||
|
- "ppp0_has_ipv4={{ dev2_ppp_old_ok }}"
|
||||||
|
- "eth0.4000_exists={{ dev2_eth04000_present }}"
|
||||||
|
- "dev2_conn_final={{ dev2_conn_final }}"
|
||||||
|
changed_when: false
|
||||||
|
|
||||||
|
- name: "PHASE 0 (LAST) | End host if DEV2 is NOT a pure old PPP device"
|
||||||
|
when: not (dev2_pre_migration_ok | bool)
|
||||||
|
ansible.builtin.meta: end_host
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
# ============================ PHASE 1: FIRST ON-DEVICE COMMAND (uptime) ============================
|
# ============================ PHASE 1: FIRST ON-DEVICE COMMAND (uptime) ============================
|
||||||
- name: "PHASE 1 | DEV2 uptime via wrapper"
|
- name: "PHASE 1 | DEV2 uptime via wrapper"
|
||||||
delegate_to: localhost
|
delegate_to: localhost
|
||||||
@@ -857,7 +909,7 @@
|
|||||||
ansible.builtin.fail:
|
ansible.builtin.fail:
|
||||||
msg: "DEV2 md5sum for {{ dev2_config_dhcp_remote_path }} is empty; upload failed or md5sum unavailable."
|
msg: "DEV2 md5sum for {{ dev2_config_dhcp_remote_path }} is empty; upload failed or md5sum unavailable."
|
||||||
|
|
||||||
- name: PHASE 1 | Compare controller vs DEV2 md5sum for config-dhcp.json (fail on mismatch)
|
- name: PHASE 1 | Compare controller vs DEV2 md5sum for config-dhcp.json (Ok, to be skipped. fail on mismatch)
|
||||||
delegate_to: localhost
|
delegate_to: localhost
|
||||||
ansible.builtin.fail:
|
ansible.builtin.fail:
|
||||||
msg: >-
|
msg: >-
|
||||||
|
|||||||
Reference in New Issue
Block a user