mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-04-01 00:03:10 +00:00
Katello: Added product to the dict choices (#49776)
* Added product to the dict choices. Following issue 48594 where product is not a recognised choice: https://github.com/ansible/ansible/issues/48594 * fixed doc added - product to the doc * split line 549 to correct ci test splitting line 549 * Create 49776-product_fix_katello_foreman_module.yaml changelog fragment creation
This commit is contained in:
@@ -0,0 +1,2 @@
|
||||
bugfixes:
|
||||
- "remote_management foreman - Fixed issue where it was impossible to createdelete a product because product was missing in dict choices ( https://github.com/ansible/ansible/issues/48594 )"
|
||||
@@ -53,6 +53,7 @@ options:
|
||||
- content_view
|
||||
- lifecycle_environment
|
||||
- activation_key
|
||||
- product
|
||||
|
||||
required: true
|
||||
action:
|
||||
@@ -545,7 +546,8 @@ def main():
|
||||
username=dict(type='str', required=True, no_log=True),
|
||||
password=dict(type='str', required=True, no_log=True),
|
||||
entity=dict(type='str', required=True,
|
||||
choices=['repository', 'manifest', 'repository_set', 'sync_plan', 'content_view', 'lifecycle_environment', 'activation_key']),
|
||||
choices=['repository', 'manifest', 'repository_set', 'sync_plan',
|
||||
'content_view', 'lifecycle_environment', 'activation_key', 'product']),
|
||||
action=dict(type='str', choices=['sync', 'publish', 'promote']),
|
||||
verify_ssl=dict(type='bool', default=False),
|
||||
task_timeout=dict(type='int', default=1000),
|
||||
|
||||
Reference in New Issue
Block a user