This commit is contained in:
Brad Warren 2015-07-17 17:33:32 -07:00
parent 94afa42e07
commit 124b993429
4 changed files with 5 additions and 8 deletions

View file

@ -1,6 +1,3 @@
# https://github.com/letsencrypt/letsencrypt/pull/431#issuecomment-103659297
# it is more likely developers will already have ubuntu:trusty rather
# than e.g. debian:jessie and image size differences are negligible
FROM httpd
MAINTAINER Brad Warren <bradmw@umich.edu>

View file

@ -27,7 +27,7 @@ then
enable "ssl"
elif [ $2 == "rewrite" ]
then
enable "rewrite";
enable "rewrite"
else
exit 1;
exit 1
fi

View file

@ -10,7 +10,7 @@ from tests.compatibility.configurators.apache import common as apache_common
STATIC_MODULES = {"core", "so", "http", "mpm_event", "watchdog",}
INSTALLED_MODULES = {
SHARED_MODULES = {
"log_config", "logio", "version", "unixd", "access_compat", "actions",
"alias", "allowmethods", "auth_basic", "auth_digest", "auth_form",
"authn_anon", "authn_core", "authn_dbd", "authn_dbm", "authn_file",
@ -47,7 +47,7 @@ class Proxy(apache_common.Proxy):
with open(self.test_conf, "a") as f:
for module in self.modules:
if module not in STATIC_MODULES:
if module in INSTALLED_MODULES:
if module in SHARED_MODULES:
f.write(
"LoadModule {0}_module /usr/local/apache2/modules/"
"mod_{0}.so\n".format(module))

View file

@ -34,7 +34,7 @@ def get_args():
"-p", "--plugin", default="apache", help="the plugin to be tested")
group.add_argument(
"-v", "--verbose", dest="verbose_count", action="count",
default=0, help="You know how to use this")
default=0, help="you know how to use this")
group.add_argument(
"-a", "--auth", action="store_true",
help="tests the challenges the plugin supports")