Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

cloud: ovirt: add requirments to ovirt_auth module #21460

Merged
merged 1 commit into from
Feb 15, 2017
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
6 changes: 6 additions & 0 deletions lib/ansible/modules/cloud/ovirt/ovirt_auth.py
Original file line number Diff line number Diff line change
Expand Up @@ -83,10 +83,16 @@
description:
- "A boolean flag indicating if Kerberos authentication
should be used instead of the default basic authentication."
requirements:
- python >= 2.7
- ovirt-engine-sdk-python >= 4.0.0
notes:
- "Everytime you use ovirt_auth module to obtain ticket, you need to also revoke the ticket,
when you no longer need it, otherwise the ticket would be revoked by engine when it expires.
For an example of how to achieve that, please take a look at I(examples) section."
- "In order to use this module you have to install oVirt Python SDK.
To ensure it's installed with correct version you can create the following task:
I(pip: name=ovirt-engine-sdk-python version=4.0.0)"
'''

EXAMPLES = '''
Expand Down