arubanetworks.aoscx.aoscx_checkpoint (4.3.2) — module

Creates a new checkpoint or copies an existing checkpoint to AOS-CX switch config.

| "added in version" 2.8.0 of arubanetworks.aoscx"

Authors: Aruba Networks (@ArubaNetworks)

preview | supported by certified

Install collection

Install with ansible-galaxy collection install arubanetworks.aoscx:==4.3.2


Add to requirements.yml

  collections:
    - name: arubanetworks.aoscx
      version: 4.3.2

Description

This module creates a new checkpoint or copies existing checkpoint to the running or startup config of an AOS-CX switch.

Usage examples

  • Success
    Steampunk Spotter scan finished with no errors, warnings or hints.
- name: Copy running-config to startup-config
  aoscx_checkpoint:
    source_config: 'running-config'
    destination_config: 'startup-config'
  • Success
    Steampunk Spotter scan finished with no errors, warnings or hints.
- name: Copy startup-config to running-config
  aoscx_checkpoint:
    source_config: 'startup-config'
    destination_config: 'running-config'
  • Success
    Steampunk Spotter scan finished with no errors, warnings or hints.
- name: Copy running-config to backup checkpoint
  aoscx_checkpoint:
    source_config: 'running-config'
    destination_config: 'checkpoint_20200128'

Inputs

    
source_config:
    default: running-config
    description: 'Name of the source configuration from which checkpoint needs to be created
      or copied.

      '
    required: false
    type: str

destination_config:
    default: startup-config
    description: Name of the destination configuration or name of checkpoint.
    required: false
    type: str