1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2024-09-14 20:13:21 +02:00

fixed error on detecting missing requirements

Signed-off-by: Brian Coca <briancoca+dev@gmail.com>
This commit is contained in:
Brian Coca 2013-07-25 21:51:29 -04:00
parent db22e2c7aa
commit f451063ef2

View file

@ -60,11 +60,11 @@ EXAMPLES = '''
# Removes the acl for joe # Removes the acl for joe
- acl: name=/etc/foo.conf entry="u:joe:-" state=absent - acl: name=/etc/foo.conf entry="u:joe:-" state=absent
''' '''
NO_PYLIBACL=False
try: try:
import posix1e import posix1e
except: except:
module.fail_json(msg="Could not import required module pylibacl (posix1e)") NO_PYLIBACL=True
def main(): def main():
module = AnsibleModule( module = AnsibleModule(
@ -76,6 +76,10 @@ def main():
), ),
supports_check_mode=True, supports_check_mode=True,
) )
if NO_PYLIBACL:
module.fail_json(msg="Could not import required module pylibacl (posix1e)")
path = module.params.get('name') path = module.params.get('name')
entry = module.params.get('entry') entry = module.params.get('entry')
state = module.params.get('state') state = module.params.get('state')