diff options
author | Lars Wendler <polynomial-c@gentoo.org> | 2020-12-02 12:39:33 +0100 |
---|---|---|
committer | Lars Wendler <polynomial-c@gentoo.org> | 2020-12-02 12:39:33 +0100 |
commit | ea133ba8e3fcd4b4153a5e34355a5f3196531c65 (patch) | |
tree | f72911e5cd4bc2d8b5187b73f9fd517abed099c9 | |
parent | 2.4/init: Fix regexp for interface binding detection (diff) | |
download | apache-ea133ba8e3fcd4b4153a5e34355a5f3196531c65.tar.gz apache-ea133ba8e3fcd4b4153a5e34355a5f3196531c65.tar.bz2 apache-ea133ba8e3fcd4b4153a5e34355a5f3196531c65.zip |
2.4/init: Fixed typo in interface check
Signed-off-by: Lars Wendler <polynomial-c@gentoo.org>
-rwxr-xr-x | 2.4/init/apache2.initd | 2 |
1 files changed, 1 insertions, 1 deletions
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 |