Gentoo Archives: gentoo-commits

From: Lars Wendler <polynomial-c@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/apache:master commit in: 2.4/init/
Date: Wed, 02 Dec 2020 11:43:10
Message-Id: 1606909173.ea133ba8e3fcd4b4153a5e34355a5f3196531c65.polynomial-c@gentoo
1 commit: ea133ba8e3fcd4b4153a5e34355a5f3196531c65
2 Author: Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
3 AuthorDate: Wed Dec 2 11:39:33 2020 +0000
4 Commit: Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
5 CommitDate: Wed Dec 2 11:39:33 2020 +0000
6 URL: https://gitweb.gentoo.org/proj/apache.git/commit/?id=ea133ba8
7
8 2.4/init: Fixed typo in interface check
9
10 Signed-off-by: Lars Wendler <polynomial-c <AT> gentoo.org>
11
12 2.4/init/apache2.initd | 2 +-
13 1 file changed, 1 insertion(+), 1 deletion(-)
14
15 diff --git a/2.4/init/apache2.initd b/2.4/init/apache2.initd
16 index e834b44..6e5e292 100755
17 --- a/2.4/init/apache2.initd
18 +++ b/2.4/init/apache2.initd
19 @@ -39,7 +39,7 @@ depend() {
20 local x warn_addr
21 for x in $(virtualhosts | grep '^\(\[\|\*:\|\)[[:digit:]]' | sed 's@\(:[[:digit:]]\{1,5\}\)\([[:space:]].*\|$\)@\1@' | sort -u) ; do
22 case "${x}" in
23 - \*:80|\*.443) ;;
24 + \*:80|\*:443) ;;
25 *) warn_addr="${warn_addr} ${x}" ;;
26 esac
27 done