summaryrefslogtreecommitdiff
path: root/web_infrastructure/apache2_module.py
diff options
context:
space:
mode:
Diffstat (limited to 'web_infrastructure/apache2_module.py')
-rw-r--r--web_infrastructure/apache2_module.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/web_infrastructure/apache2_module.py b/web_infrastructure/apache2_module.py
index 3d135fe3..04bea121 100644
--- a/web_infrastructure/apache2_module.py
+++ b/web_infrastructure/apache2_module.py
@@ -55,7 +55,7 @@ def _disable_module(module):
result, stdout, stderr = module.run_command("%s %s" % (a2dismod_binary, name))
- if re.match(r'.*\b' + name + r' already disabled', stdout, re.S):
+ if re.match(r'.*\b' + name + r' already disabled', stdout, re.S|re.M):
module.exit_json(changed = False, result = "Success")
elif result != 0:
module.fail_json(msg="Failed to disable module %s: %s" % (name, stdout))
@@ -70,7 +70,7 @@ def _enable_module(module):
result, stdout, stderr = module.run_command("%s %s" % (a2enmod_binary, name))
- if re.match(r'.*\b' + name + r' already enabled', stdout, re.S):
+ if re.match(r'.*\b' + name + r' already enabled', stdout, re.S|re.M):
module.exit_json(changed = False, result = "Success")
elif result != 0:
module.fail_json(msg="Failed to enable module %s: %s" % (name, stdout))