radware.radware_modules.alteon_software_install (0.6.12) — module

Install software image on device

| "added in version" 2.9 of radware.radware_modules"

Authors: Leon Meguira (@leonmeguira)

stableinterface | supported by certified

Install collection

Install with ansible-galaxy collection install radware.radware_modules:==0.6.12


Add to requirements.yml

  collections:
    - name: radware.radware_modules
      version: 0.6.12

Description

Install software image on Alteon device


Requirements

Usage examples

  • Success
    Steampunk Spotter scan finished with no errors, warnings or hints.
- name: alteon software installation
  radware.radware_modules.alteon_software_install:
    provider: 
      server: 192.168.1.1
      user: admin
      password: admin
      validate_certs: no
      https_port: 443
      ssh_port: 22
      timeout: 5
    state: activated
    version: 31.0.10.50
    reboot_wait: yes
    reboot_timeout: 600

Inputs

    
state:
    choices:
    - installed
    - activated
    default: activated
    description:
    - When C(installed), ensure the software installed on the device and the is set to
      be booted from. the device is not rebooted into the new software if needed.
    - When C(activated), performs the same operation as C(installed), but the system is
      rebooted into the new software
    required: false

version:
    default: null
    description:
    - software version
    required: true
    type: str

provider:
    description:
    - Radware Alteon connection details.
    required: true
    suboptions:
      https_port:
        default: null
        description:
        - Radware Alteon https port.
        required: true
      password:
        default: null
        description:
        - Radware Alteon password.
        required: true
      server:
        default: null
        description:
        - Radware Alteon IP address.
        required: true
      ssh_port:
        default: null
        description:
        - Radware Alteon ssh port.
        required: true
      timeout:
        default: null
        description:
        - Timeout for connection.
        required: true
      user:
        default: null
        description:
        - Radware Alteon username.
        required: true
      validate_certs:
        default: null
        description:
        - If C(no), SSL certificates will not be validated.
        - This should only set to C(no) used on personally controlled sites using self-signed
          certificates.
        required: true
        type: bool

reboot_wait:
    default: true
    description:
    - when C(yes) wait for device to return after reboot.
    - when C(no) no wait for device to return after reboot
    required: false
    type: bool

reboot_timeout:
    default: 600
    description:
    - Stateful Reboot timeout in seconds.
    required: false
    type: int

reboot_wait_vadc:
    default: false
    description:
    - when C(yes) wait for vadcs to return after device reboot.
    - when C(no) no wait for vadcs to return after device reboot
    - applicable on VX and when reboot_wait = yes
    required: false
    type: bool

reboot_vadc_timeout:
    default: 180
    description:
    - vadc wait timeout in seconds.
    required: false
    type: int

Outputs

status:
  description: Message detailing run result
  returned: success
  sample: Software Installed successfully
  type: str