mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-04-01 00:03:10 +00:00
redhat_subscription calls AnsibleModule() without argument_spec
The Rhsm object requires an AnsibleModule but it isn't created with an argument_spec and fails. Since the rhn.module is set directly after, setting None for the required argument of Rhsm fixes the module.
This commit is contained in:
@@ -327,7 +327,7 @@ class RhsmPools(object):
|
||||
def main():
|
||||
|
||||
# Load RHSM configuration from file
|
||||
rhn = Rhsm(AnsibleModule())
|
||||
rhn = Rhsm(None)
|
||||
|
||||
module = AnsibleModule(
|
||||
argument_spec = dict(
|
||||
|
||||
Reference in New Issue
Block a user