rhsm_repository – Manage RHSM repositories using the subscription-manager command¶
New in version 2.5.
Synopsis¶
- Manage (Enable/Disable) RHSM repositories to the Red Hat Subscription Management entitlement platform using the
subscription-manager
command.
Requirements¶
The below requirements are needed on the host that executes this module.
- subscription-manager
Parameters¶
Notes¶
Note
- In order to manage RHSM repositories the system must be already registered to RHSM manually or using the Ansible
redhat_subscription
module.
Examples¶
- name: Enable a RHSM repository
rhsm_repository:
name: rhel-7-server-rpms
- name: Disable all RHSM repositories
rhsm_repository:
name: '*'
state: disabled
- name: Enable all repositories starting with rhel-6-server
rhsm_repository:
name: rhel-6-server*
state: enabled
- name: Disable all repositories except rhel-7-server-rpms
rhsm_repository:
name: rhel-7-server-rpms
purge: True
Return Values¶
Common return values are documented here, the following are the fields unique to this module:
Status¶
- This module is not guaranteed to have a backwards compatible interface. [preview]
- This module is maintained by the Ansible Community. [community]
Authors¶
- Giovanni Sciortino (@giovannisciortino)
Hint
If you notice any issues in this documentation, you can edit this document to improve it.