There is a PR opened currently for redhat_repositories (https://github.com/ansible/ansible/pull/19717) however, subscription_manager is already implemented in the redhat_subscription
module. Is anyone working on adding the repos parameter to the redhat_subscription module?
`
subscription-manager repos --help
Usage: subscription-manager repos [OPTIONS]
List the repositories which this system is entitled to use
Options:
-h, --help show this help message and exit
–proxy=PROXY_URL proxy URL in the form of proxy_hostname:proxy_port
–proxyuser=PROXY_USER
user for HTTP proxy with basic authentication
–proxypassword=PROXY_PASSWORD
password for HTTP proxy with basic authentication
–noproxy=NO_PROXY host suffixes that should bypass HTTP proxy
–list list all known repositories for this system
–list-enabled list known, enabled repositories for this system
–list-disabled list known, disabled repositories for this system
–enable=REPOID repository to enable (can be specified more than
once). Wildcards (* and ?) are supported.
–disable=REPOID repository to disable (can be specified more than
once). Wildcards (* and ?) are supported.
`
Essentially I envision an example call looking something like:
`
- name: Enable RHEL 7 Server RPMS
redhat_subscription:
repo_id: rhel-7-server=rpms
state: present
`
Any thoughts/input on this proposal for implementation?
Thanks,
Ron