mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
apache2_module: whitespace cleanup
Remove trailing whitespace.
This commit is contained in:
parent
4aab832ac4
commit
3531d3cd28
1 changed files with 2 additions and 2 deletions
|
@ -53,7 +53,7 @@ def _disable_module(module):
|
||||||
|
|
||||||
if re.match(r'.*already disabled.*', stdout):
|
if re.match(r'.*already disabled.*', stdout):
|
||||||
module.exit_json(changed = False, result = "Success")
|
module.exit_json(changed = False, result = "Success")
|
||||||
elif result != 0:
|
elif result != 0:
|
||||||
module.fail_json(msg="Failed to disable module %s: %s" % (name, stdout))
|
module.fail_json(msg="Failed to disable module %s: %s" % (name, stdout))
|
||||||
else:
|
else:
|
||||||
module.exit_json(changed = True, result = "Disabled")
|
module.exit_json(changed = True, result = "Disabled")
|
||||||
|
@ -65,7 +65,7 @@ def _enable_module(module):
|
||||||
|
|
||||||
if re.match(r'.*already enabled.*', stdout):
|
if re.match(r'.*already enabled.*', stdout):
|
||||||
module.exit_json(changed = False, result = "Success")
|
module.exit_json(changed = False, result = "Success")
|
||||||
elif result != 0:
|
elif result != 0:
|
||||||
module.fail_json(msg="Failed to enable module %s: %s" % (name, stdout))
|
module.fail_json(msg="Failed to enable module %s: %s" % (name, stdout))
|
||||||
else:
|
else:
|
||||||
module.exit_json(changed = True, result = "Enabled")
|
module.exit_json(changed = True, result = "Enabled")
|
||||||
|
|
Loading…
Reference in a new issue