diff --git a/web_infrastructure/apache2_module b/web_infrastructure/apache2_module index 103a1537d88..d966fad58e5 100644 --- a/web_infrastructure/apache2_module +++ b/web_infrastructure/apache2_module @@ -63,7 +63,7 @@ def _enable_module(module): a2enmod_binary = module.get_bin_path("a2enmod") result, stdout, stderr = module.run_command("%s %s" % (a2enmod_binary, name)) - if re.match(r'.*already enabled.*', stdout): + if re.search(r'.*%s\s+already enabled.*' % name, stdout, re.M): module.exit_json(changed = False, result = "Success") elif result != 0: module.fail_json(msg="Failed to enable module %s: %s" % (name, stdout))