commit: ea133ba8e3fcd4b4153a5e34355a5f3196531c65
Author: Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
AuthorDate: Wed Dec 2 11:39:33 2020 +0000
Commit: Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
CommitDate: Wed Dec 2 11:39:33 2020 +0000
URL: https://gitweb.gentoo.org/proj/apache.git/commit/?id=ea133ba8
2.4/init: Fixed typo in interface check
Signed-off-by: Lars Wendler <polynomial-c <AT> gentoo.org>
2.4/init/apache2.initd | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/2.4/init/apache2.initd b/2.4/init/apache2.initd
index e834b44..6e5e292 100755
--- a/2.4/init/apache2.initd
+++ b/2.4/init/apache2.initd
@@ -39,7 +39,7 @@ depend() {
local x warn_addr
for x in $(virtualhosts | grep '^\(\[\|\*:\|\)[[:digit:]]' |
sed 's@\(:[[:digit:]]\{1,5\}\)\([[:space:]].*\|$\)@\1@' | sort -u) ; do
case "${x}" in
- \*:80|\*.443) ;;
+ \*:80|\*:443) ;;
*) warn_addr="${warn_addr} ${x}" ;;
esac
done