summaryrefslogtreecommitdiff
path: root/test/integration/targets/nxos_install_os/tasks/upgrade/install_os.yaml
blob: 6dc811cdc7a2857869605463864880565d60de37 (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
---
- include: targets/nxos_install_os/tasks/upgrade/delete_files.yaml
  when: delete_image_list is defined

- include: targets/nxos_install_os/tasks/upgrade/copy_kick_system_images.yaml
  when: copy_images is defined

- include: targets/nxos_install_os/tasks/upgrade/install_with_kick.yaml
  when: ki is defined and combined is undefined

- include: targets/nxos_install_os/tasks/upgrade/install_system.yaml
  when: combined is defined

# Only needed when - meta: reset_connection does not work. Fixed in 2.6
#- include: targets/nxos_install_os/tasks/upgrade/clear_persistent_sockets.yaml

- meta: reset_connection

- name: "Check installed OS for newly installed version {{ tv }}"
  nxos_command:
    commands: ['show version | json']
  register: output

- debug: msg="Version detected {{ output['stdout_lines'][0]['kickstart_ver_str'] }}"