--- - debug: msg="START cli/toplevel_after.yaml on connection={{ ansible_connection }}" - name: setup ios_config: lines: - "snmp-server contact ansible" - "hostname {{ shorter_hostname }}" match: none authorize: yes - name: configure top level command with before ios_config: lines: ['hostname foo'] after: ['snmp-server contact bar'] authorize: yes register: result - assert: that: - "result.changed == true" - "'hostname foo' in result.updates" - "'snmp-server contact bar' in result.updates" - name: configure top level command with before idempotent check ios_config: lines: ['hostname foo'] after: ['snmp-server contact foo'] authorize: yes register: result - assert: that: - "result.changed == false" - name: teardown ios_config: lines: - "no snmp-server contact" - "hostname {{ shorter_hostname }}" match: none authorize: yes - debug: msg="END cli/toplevel_after.yaml on connection={{ ansible_connection }}"