summaryrefslogtreecommitdiff
path: root/test/integration/targets/nxos_config/tests/common/save.yaml
blob: 19e6b7c127d2af3ab724ede6f986a9666d4431ae (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
---
- debug: msg="START common/save.yaml on connection={{ ansible_connection }}"

# Select interface for test
- set_fact: intname="{{ nxos_int1 }}"

- name: setup
  nxos_config:
    commands:
      - no description
      - no shutdown
    parents:
      - "interface {{ intname }}"
    match: none

- name: save config
  nxos_config:
    save_when: always
  register: result

- assert:
    that:
      - "result.changed == true"

- name: save should always run
  nxos_config:
    save_when: always
  register: result

- assert:
    that:
      - "result.changed == true"

- debug: msg="END common/save.yaml on connection={{ ansible_connection }}"