diff options
author | Ryan Petrello <rpetrell@redhat.com> | 2020-10-23 17:08:50 +0200 |
---|---|---|
committer | Ryan Petrello <rpetrell@redhat.com> | 2020-10-30 21:40:00 +0100 |
commit | 7f9784c4433b0a46a4e681bfb132a634f6e73780 (patch) | |
tree | 87a64e8bad05e6c7e62735d3757c3e54a536e241 /awx_collection | |
parent | consolidate a few license code function calls (diff) | |
download | awx-7f9784c4433b0a46a4e681bfb132a634f6e73780.tar.xz awx-7f9784c4433b0a46a4e681bfb132a634f6e73780.zip |
clarify that the manifest file is a .zip file
Diffstat (limited to 'awx_collection')
-rw-r--r-- | awx_collection/plugins/modules/tower_license.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/awx_collection/plugins/modules/tower_license.py b/awx_collection/plugins/modules/tower_license.py index 35590d6e8b..89f95e7c42 100644 --- a/awx_collection/plugins/modules/tower_license.py +++ b/awx_collection/plugins/modules/tower_license.py @@ -23,7 +23,7 @@ description: options: data: description: - - The contents of the license file + - file path to a Red Hat subscription manifest (a .zip file) required: True type: dict eula_accepted: @@ -39,7 +39,7 @@ RETURN = ''' # ''' EXAMPLES = ''' - name: Set the license using a file license: - manifest: "/tmp/my_tower.license" + manifest: "/tmp/my_manifest.zip" eula_accepted: True ''' |