summaryrefslogtreecommitdiff
path: root/test/integration/targets/nxos_config/tests/common/src_basic.yaml
blob: e2d3287b6e3cc6f493e9c628372cc4ac042742f3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
---
- debug: msg="START {{ connection.transport }}/src_basic.yaml"

- name: setup
  nxos_config:
    commands:
      - no description
      - no shutdown
    parents:
      - interface Ethernet2/5
    match: none
    provider: "{{ connection }}"

- name: configure device with config
  nxos_config:
    src: basic/config.j2
    defaults: yes
    provider: "{{ connection }}"
  register: result

- assert:
    that:
      - "result.changed == true"
# https://github.com/ansible/ansible-modules-core/issues/4807
      - "result.updates is defined"

- name: check device with config
  nxos_config:
    src: basic/config.j2
    defaults: yes
    provider: "{{ connection }}"
  register: result

- assert:
    that:
      - "result.changed == false"
# https://github.com/ansible/ansible-modules-core/issues/4807
      - "result.updates is not defined"

- debug: msg="END {{ connection.transport }}/src_basic.yaml"