From 13cb23a1881012c3d9d6328053d2261352525ccb Mon Sep 17 00:00:00 2001 From: Christoph Date: Sun, 9 Aug 2020 14:02:26 +0200 Subject: [PATCH] install_postfixadmin.sh: set defaul location of postgresql socket to directory '/run/postgresql'. --- conf/install_postfixadmin.conf.sample | 2 +- install_postfixadmin.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/conf/install_postfixadmin.conf.sample b/conf/install_postfixadmin.conf.sample index 3da4280..01ac985 100644 --- a/conf/install_postfixadmin.conf.sample +++ b/conf/install_postfixadmin.conf.sample @@ -237,7 +237,7 @@ POSTFIX_DB_TYPE="pgsql" # - Example: # - POSTFIX_DB_HOST_PGSQL='/var/run/postgresql' # - -# - Defaults to '/var/run/postgresql' +# - Defaults to '/run/postgresql' # - #POSTFIX_DB_HOST_PGSQL="" diff --git a/install_postfixadmin.sh b/install_postfixadmin.sh index 66675f5..2985ccd 100755 --- a/install_postfixadmin.sh +++ b/install_postfixadmin.sh @@ -220,7 +220,7 @@ DEFAULT_APACHE_SERVER_CERT="server-bundle.crt" DEFAULT_APACHE_SERVER_KEY="server.key" DEFAULT_DEBIAN_APACHE_VHOST_DIR="/etc/apache2/sites-available" DEFAULT_APACHE_VHOST_DIR="/usr/local/apache2/conf/vhosts" -DEFAULT_POSTFIX_DB_HOST_PGSQL="/var/run/postgresql" +DEFAULT_POSTFIX_DB_HOST_PGSQL="/run/postgresql" DEFAULT_POSTFIX_DB_HOST_MYSQL="unix:/tmp/mysql.sock" DEFAULT_POSTFIX_DB_NAME="postfix" DEFAULT_POSTFIX_DB_USER="postfix"