diff --git a/wordpressinstall b/wordpressinstall index a6aad7f..035d304 100755 --- a/wordpressinstall +++ b/wordpressinstall @@ -1,5 +1,4 @@ #!/usr/bin/env bash -# SPDX-License-Identifier: MIT # Author : Allan Christensen # First Created : 22052021 (DD-MM-YYYY) @@ -23,7 +22,7 @@ if [[ -z "$phpfpm" ]]; then printf "\nUnable to detect PHP-FPM version. Is PHP-F for svc in nginx mariadb "$phpfpm"; do systemctl is-active --quiet "$svc" || { printf "\n%s is not running, cannot continue...\n\n" "${svc^}" ; exit 1 ; }; done # -# Check MariaDB authentication method (socket or not) +# Check MariaDB authentication method (socket or password) # if mysql -u root -e ";" 2>/dev/null; then socket="SOCKET DETECTED — no need for -a or -m"