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

View File

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