diff --git a/roles/configure/tasks/main.yaml b/roles/configure/tasks/main.yaml index 40ee3cc..466a7bd 100644 --- a/roles/configure/tasks/main.yaml +++ b/roles/configure/tasks/main.yaml @@ -104,7 +104,7 @@ - name: Run nmcli to check if Ethernet connection has already been added shell: /usr/bin/nmcli c | grep 'Ethernet-{{ int_name }}' - register: nmcli_result_eth + register: "nmcli_result_eth-{{ int_name }}" ignore_errors: True loop: "{{ phy_ints }}" loop_control: @@ -112,8 +112,11 @@ - name: Check result nmcli eth set_fact: - nmcli_eth_failed: "{{ nmcli_result_eth.rc != 0 }}" - + nmcli_eth_failed: "{{ nmcli_result_eth-{{ int_name }}.rc != 0 }}" + loop: "{{ phy_ints }}" + loop_control: + loop_var: int_name + - name: Run nmcli to check if Ethernet connection has already been added shell: /usr/bin/nmcli c | grep 'LTE' register: nmcli_result_lte