Update phpmyadmin.sh

This commit is contained in:
CanbiZ 2025-04-29 13:07:01 +02:00
parent eb48c4b882
commit c757849f46

View File

@ -155,7 +155,7 @@ EOF
msg_info "Testing Nginx configuration"
if nginx -t; then
if ! pgrep -x "nginx" > /dev/null; then
if ! pgrep -x "nginx" >/dev/null; then
msg_info "Starting Nginx"
rc-service nginx start
else
@ -170,8 +170,6 @@ EOF
fi
}
}
function uninstall_phpmyadmin() {
msg_info "Stopping Webserver"
if [[ "$OS" == "Debian" ]]; then