summaryrefslogtreecommitdiff
path: root/test/integration/targets/nxos_install_os/tasks/upgrade/delete_files_provider.yaml
blob: 0ba4280402b5711b1674fd60db93eb399d91c8af (plain)
1
2
3
4
5
6
7
8
9
10
11
---
 - name: "Delete Files To Make Room On Bootflash using provider"
   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 }}"