Note
This module is part of the dellemc.openmanage collection (version 9.12.3).
You might already have this collection installed if you are using the ansible package. It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.
To install it, use: ansible-galaxy collection install dellemc.openmanage. You need further requirements to be able to use this module, see Requirements for details.
To use it in a playbook, specify: dellemc.openmanage.omevv_firmware_repository_profile.
New in dellemc.openmanage 9.8.0
The below requirements are needed on the host that executes this module.
Parameter | Comments |
|---|---|
ca_path path | The Privacy Enhanced Mail (PEM) file that contains a CA certificate to be used for the validation. |
catalog_path string | Absolute path of the catalog. HTTP, HTTPS, NFS, and CIFS paths are supported. This parameter is required when state is |
description string | Description of OMEVV firmware repository profile. |
hostname string / required | IP address or hostname of the OpenManage Enterprise Modular. |
name string | Name of the OMEVV firmware repository profile. This parameter is required for modification operation when state is |
new_name string | Name of the new OMEVV profile name when modify operation is performed. |
password string | OpenManage Enterprise or OpenManage Enterprise Modular password. If resync is true, then password is required. |
port integer | OpenManage Enterprise HTTPS port. Default: |
protocol_type string |
This parameter is required when state is Choices:
|
resync boolean | Sync the repository profile from the UMP plugin. Choices:
|
string | Domain of the share. |
string | Password of the share. This parameter is required when catalog_path is HTTPS or CIFS. |
string | Username of the share. This parameter is required when catalog_path is HTTPS or CIFS. |
state string |
Either profile_name or profile_id is required when state is Choices:
|
timeout integer | The socket level timeout in seconds. Default: |
username string | OpenManage Enterprise or OpenManage Enterprise Modular username. If resync is true, then username is required. |
validate_certs boolean | Whether to check SSL certificate. - If Choices:
|
vcenter_password string | Password for OpenManage Enterprise Integration for VMware vCenter (OMEVV). If the password is not provided, then the environment variable Example: export OMEVV_VCENTER_PASSWORD=password |
vcenter_username string | Username for OpenManage Enterprise Integration for VMware vCenter (OMEVV). If the username is not provided, then the environment variable Example: export OMEVV_VCENTER_USERNAME=username |
vcenter_uuid string | Universally Unique Identifier (UUID) of vCenter. vCenter UUID details can be retrieved using dellemc.openmanage.omevv_vcenter_info module. If UUID is not provided, then the environment variable Example: export OMEVV_VCENTER_UUID=uuid |
Attribute | Support | Description |
|---|---|---|
check_mode | Support: full | Runs task to validate without performing action on the target machine. |
diff_mode | Support: full | Runs the task to report the changes that are made or the changes that must be applied. |
Note
---
- name: Create an OMEVV firmware repository profile
dellemc.openmanage.omevv_firmware_repository_profile:
hostname: "192.168.0.1"
vcenter_uuid: "xxxxx"
vcenter_username: "username"
vcenter_password: "password"
ca_path: "path/to/ca_file"
state: present
name: profile-1
catalog_path: http://xx.xx.xx.xx/share/Catalog/Catalog.xml
- name: Modify an OMEVV firmware repository profile
dellemc.openmanage.omevv_firmware_repository_profile:
hostname: "192.168.0.1"
vcenter_uuid: "xxxxx"
vcenter_username: "username"
vcenter_password: "password"
ca_path: "path/to/ca_file"
state: present
name: profile-1
new_name: profile-2
catalog_path: http://xx.xx.xx.xx/new_share/Catalog/Catalog.xml
- name: Delete an OMEVV firmware repository profile
dellemc.openmanage.omevv_firmware_repository_profile:
hostname: "192.168.0.1"
vcenter_uuid: "xxxxx"
vcenter_username: "username"
vcenter_password: "password"
ca_path: "path/to/ca_file"
state: absent
name: profile-1
Common return values are documented here, the following are the fields unique to this module:
Key | Description |
|---|---|
error_info dictionary | Details of the HTTP Error. Returned: on HTTP error Sample: |
msg string | Status of the profile operation. Returned: always Sample: |
© 2012–2018 Michael DeHaan
© 2018–2025 Red Hat, Inc.
Licensed under the GNU General Public License version 3.
https://docs.ansible.com/ansible/latest/collections/dellemc/openmanage/omevv_firmware_repository_profile_module.html