Fix error in determin systemd script for mysql and apache2.

This commit is contained in:
Christoph 2018-01-29 03:05:17 +01:00
parent 4bfd9b87f6
commit 9b7ec42f6e

View File

@ -148,7 +148,7 @@ if $check_mysql ; then
# -
if systemctl -t service list-unit-files \
| grep -e "^mysql" \
| grep -q enabled 2> /devnull ; then
| grep -q -E "(enabled|disabled)" 2> /devnull ; then
MYSQLD_SERVICE_FILE=$(systemctl -t service list-unit-files \
| grep -e "^mysql" \
@ -214,20 +214,6 @@ if $check_apache ; then
fi
fi
if $systemd_supported ; then
# - Is Service exclusive controlled by systemd
# -
if systemctl -t service list-unit-files \
| grep -e "^mysql" \
| grep -q enabled 2> /devnull ; then
MYSQLD_SERVICE_FILE=$(systemctl -t service list-unit-files \
| grep -e "^mysql" \
| awk '{print$1}')
fi
fi
APACHE_SERVICE_FILE=""
APACHE_INIT_SCRIPT=""
if $systemd_supported ; then
@ -235,7 +221,7 @@ if $check_apache ; then
# -
if systemctl -t service list-unit-files \
| grep -e "^apache" \
| grep -q enabled 2> /devnull ; then
| grep -q -E "(enabled|disabled)" 2> /devnull ; then
APACHE_SERVICE_FILE=$(systemctl -t service list-unit-files \
| grep -e "^apache" \