mirror of
https://github.com/valitydev/salt.git
synced 2024-11-08 09:23:56 +00:00
Add return messages on boto library load failure
lines for library not avalible and wrong version added.
This commit is contained in:
parent
f5e24872f1
commit
b53da0eb4b
@ -81,9 +81,9 @@ def __virtual__():
|
||||
# which was added in boto 2.8.0
|
||||
# https://github.com/boto/boto/commit/33ac26b416fbb48a60602542b4ce15dcc7029f12
|
||||
if not HAS_BOTO:
|
||||
return False
|
||||
return (False, "The boto_ec2 module cannot be loaded: boto library not found")
|
||||
elif _LooseVersion(boto.__version__) < _LooseVersion(required_boto_version):
|
||||
return False
|
||||
return (False, "The boto_ec2 module cannot be loaded: boto library verion incorrect ")
|
||||
return True
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user