summaryrefslogtreecommitdiff
path: root/test/integration/targets/nxos_install_os/tasks/upgrade/delete_files.yaml
blob: f72f31569fb26d0576a6d146a79e860d59882034 (plain)
1
2
3
4
5
6
7
8
9
10
11
---
- name: "Delete Files To Make Room On Bootflash"
  nxos_config: &remove_file
    lines:
      - terminal dont-ask
      - allow delete boot-image
      - "delete {{ item }}"
    match: none
    provider: "{{ connection }}"
  ignore_errors: yes
  with_items: "{{ delete_image_list }}"