install_postfixadmin.sh: fix error for value of 'DEFAULT_MYSQL_CREDENTIALS' and 'DEFAULT_DEBIAN_MYSQL_CREDENTIALS'.

This commit is contained in:
Christoph 2018-09-26 00:29:23 +02:00
parent b95e0e3e97
commit 823dde9c8f
2 changed files with 6 additions and 6 deletions

View File

@ -42,7 +42,7 @@ IPV6=""
# -
#WEBMASTER_EMAIL=""
# - Base Directory of Roundcube Website
# - Base Directory of postfixadmin Website
# -
# - Note: it's not the 'DocumentRoot' directory, but the directory where
# - the 'DocumentRoot' Directory lives.
@ -69,7 +69,7 @@ IPV6=""
# -
APACHE_CERT_DIR=""
# - Certificate for the Rounfcube Website
# - Certificate for the postfixadmin Website
# -
# - Example:
# - APACHE_SERVER_CERT="fullchain.pem"
@ -142,8 +142,8 @@ APACHE_SERVER_KEY=""
# - mysql_credential_args="--defaults-file=/usr/local/mysql/sys-maint.cnf"
# -
# - Defaults to:
# - '/etc/mysql/debian.cnf' if MySQL is installed from debian package system
# - '/usr/local/mysql/sys-maint.cnf' otherwise
# - '--defaults-file=//etc/mysql/debian.cnf' if MySQL is installed from debian package system
# - '--defaults-file=//usr/local/mysql/sys-maint.cnf' otherwise
# -
#MYSQL_CREDENTIALS=""

View File

@ -224,8 +224,8 @@ DEFAULT_POSTFIX_DB_HOST="localhost"
DEFAULT_POSTFIX_DB_NAME="postfix"
DEFAULT_POSTFIX_DB_USER="postfix"
DEFAULT_POSTFIX_DB_SOCKET_PG="/var/run/postgresql"
DEFAULT_DEBIAN_MYSQL_CREDENTIALS="/etc/mysql/debian.cnf"
DEFAULT_MYSQL_CREDENTIALS="/usr/local/mysql/sys-maint.cnf"
DEFAULT_DEBIAN_MYSQL_CREDENTIALS="--defaults-file=/etc/mysql/debian.cnf"
DEFAULT_MYSQL_CREDENTIALS="--defaults-file=/usr/local/mysql/sys-maint.cnf"
DEFAULT_DOVEADM_PW="/usr/local/dovecot/bin/doveadm pw"
DEFAULT_DELETED_MAILBOX_DIR="/var/deleted-maildirs"