dcnm_bootflash
Details
- author
- Allen Robel (@quantumonion)
- description
- Delete, query bootflash files.
- short_description
- Bootflash management for Nexus switches.
- version_added
options
Details
config
Details
- description
- Configuration parameters for the module.
- required
switches
Details
- description
- List of dictionaries containing switches on which query or delete operations are executed.
- elements
ip_address
Details
- description
- The ip address of a switch.
- required
- type
targets
Details
- default
- description
- List of dictionaries containing options for files to be deleted or queried.
- elements
- required
filepath
Details
- description
- The path to the file to be deleted or queried. Only files in the root directory of the partition are currently supported.
- required
- type
supervisor
Details
- choices
- default
- description
- Either active or standby. The supervisor containing the filepath.
- required
- type
- type
- type
targets
Details
- default
- description
- List of dictionaries containing options for files to be deleted or queried.
- elements
- required
filepath
Details
- description
- The path to the file to be deleted or queried.
- required
- type
supervisor
Details
- choices
- default
- description
- Either active or standby. The supervisor containing the filepath.
- required
- type
- type
- type
state
Details
- choices
- default
- description
- The state of the feature or object after module completion
- type
Examples
Details
---
# This module supports the following states:
#
# deleted:
# Delete files from the bootflash of one or more switches.
#
# If an image is in use by a device, the module will fail. Use
# dcnm_image_upgrade module, state deleted, to detach image policies
# containing images to be deleted.
#
# query:
#
# Return information for one or more files.
#
# Delete two files from each of three switches.
- name: Delete two files from each of two switches
cisco.dcnm.dcnm_bootflash:
state: deleted
config:
targets:
- filepath: bootflash:/foo.txt
supervisor: active
- filepath: bootflash:/bar.txt
supervisor: standby
switches:
- ip_address: 192.168.1.1
- ip_address: 192.168.1.2
- ip_address: 192.168.1.3
# Delete two files from switch 192.168.1.1 and switch 192.168.1.2:
# - foo.txt on the active supervisor's bootflash: device.
# - bar.txt on the standby supervisor's bootflash: device.
# Delete potentially multiple files from switch 192.168.1.3:
# - All txt files on the standby supervisor's bootflash: device
# that match the pattern 202401??.txt, e.g. 20240123.txt.
# Delete potentially multiple files from switch 192.168.1.4:
# - All txt files on all flash devices on active supervisor.
- name: Delete files
cisco.dcnm.dcnm_bootflash:
state: deleted
config:
targets:
- filepath: bootflash:/foo.txt
supervisor: active
- filepath: bootflash:/bar.txt
supervisor: standby
switches:
- ip_address: 192.168.1.1
- ip_address: 192.168.1.2
- ip_address: 192.168.1.3
targets:
- filepath: bootflash:/202401??.txt
supervisor: standby
- ip_address: 192.168.1.4
targets:
- filepath: "*:/*.txt"
supervisor: active
register: result
- name: print result
ansible.builtin.debug:
var: result
# Query the controller for information about one file on three switches.
# Since the default for supervisor is "active", the module will query the
# active supervisor's bootflash: device.
- name: Query file on three switches
cisco.dcnm.dcnm_bootflash:
state: query
config:
targets:
- filepath: bootflash:/foo.txt
switches:
- ip_address: 192.168.1.1
- ip_address: 192.168.1.2
- ip_address: 192.168.1.3
register: result
- name: print result
ansible.builtin.debug:
var: result