mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Use ovirtsdk if it installed, but fall out gracefully if it is not
This commit is contained in:
parent
c259993559
commit
b5d8aa9ff1
1 changed files with 6 additions and 2 deletions
4
library/cloud/ovirt
Normal file → Executable file
4
library/cloud/ovirt
Normal file → Executable file
|
@ -205,8 +205,12 @@ action: ovirt >
|
|||
|
||||
|
||||
'''
|
||||
try:
|
||||
from ovirtsdk.api import API
|
||||
from ovirtsdk.xml import params
|
||||
except ImportError:
|
||||
print "failed=True msg='ovirtsdk required for this module'"
|
||||
sys.exit(1)
|
||||
|
||||
# ------------------------------------------------------------------- #
|
||||
# create connection with API
|
||||
|
|
Loading…
Reference in a new issue