mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-08-05 21:54:22 -07:00
univention udm_share: pep8
This commit is contained in:
parent
8eb496989e
commit
de34fdf681
1 changed files with 19 additions and 12 deletions
|
@ -28,7 +28,6 @@ from ansible.module_utils.univention_umc import (
|
||||||
ldap_search,
|
ldap_search,
|
||||||
base_dn,
|
base_dn,
|
||||||
)
|
)
|
||||||
import socket
|
|
||||||
|
|
||||||
|
|
||||||
DOCUMENTATION = '''
|
DOCUMENTATION = '''
|
||||||
|
@ -484,9 +483,9 @@ def main():
|
||||||
|
|
||||||
module.params['printablename'] = '{} ({})'.format(name, module.params['host'])
|
module.params['printablename'] = '{} ({})'.format(name, module.params['host'])
|
||||||
for k in obj.keys():
|
for k in obj.keys():
|
||||||
if module.params[k] == True:
|
if module.params[k] is True:
|
||||||
module.params[k] = '1'
|
module.params[k] = '1'
|
||||||
elif module.params[k] == False:
|
elif module.params[k] is False:
|
||||||
module.params[k] = '0'
|
module.params[k] = '0'
|
||||||
obj[k] = module.params[k]
|
obj[k] = module.params[k]
|
||||||
|
|
||||||
|
@ -494,17 +493,21 @@ def main():
|
||||||
if exists:
|
if exists:
|
||||||
for k in obj.keys():
|
for k in obj.keys():
|
||||||
if obj.hasChanged(k):
|
if obj.hasChanged(k):
|
||||||
changed=True
|
changed = True
|
||||||
else:
|
else:
|
||||||
changed=True
|
changed = True
|
||||||
if not module.check_mode:
|
if not module.check_mode:
|
||||||
if not exists:
|
if not exists:
|
||||||
obj.create()
|
obj.create()
|
||||||
elif changed:
|
elif changed:
|
||||||
obj.modify()
|
obj.modify()
|
||||||
except Exception as e:
|
except BaseException as err:
|
||||||
module.fail_json(
|
module.fail_json(
|
||||||
msg='Creating/editing share {} in {} failed: {}'.format(name, container, e)
|
msg='Creating/editing share {} in {} failed: {}'.format(
|
||||||
|
name,
|
||||||
|
container,
|
||||||
|
err,
|
||||||
|
)
|
||||||
)
|
)
|
||||||
|
|
||||||
if state == 'absent' and exists:
|
if state == 'absent' and exists:
|
||||||
|
@ -513,9 +516,13 @@ def main():
|
||||||
if not module.check_mode:
|
if not module.check_mode:
|
||||||
obj.remove()
|
obj.remove()
|
||||||
changed = True
|
changed = True
|
||||||
except:
|
except BaseException as err:
|
||||||
module.fail_json(
|
module.fail_json(
|
||||||
msg='Removing share {} in {} failed: {}'.format(name, container, e)
|
msg='Removing share {} in {} failed: {}'.format(
|
||||||
|
name,
|
||||||
|
container,
|
||||||
|
err,
|
||||||
|
)
|
||||||
)
|
)
|
||||||
|
|
||||||
module.exit_json(
|
module.exit_json(
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue