diff options
author | Alan Messias Cordeiro de Lacerda <alancordeiro@gmail.com> | 2014-08-08 14:08:02 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2014-08-11 12:10:59 +0000 |
commit | 5a3102461f9d40667358c4ae4c28d57597859b16 (patch) | |
tree | 19c677ac706938985fd9d08a531f6f2205868b0c /main/postgresql/postgresql.initd | |
parent | 3819f423fbcf28cbb5b68a0f7bf6a820faf9fa44 (diff) | |
download | aports-5a3102461f9d40667358c4ae4c28d57597859b16.tar.bz2 aports-5a3102461f9d40667358c4ae4c28d57597859b16.tar.xz |
main/postgresql fix unix_socket_directories get_config parameter
Diffstat (limited to 'main/postgresql/postgresql.initd')
-rw-r--r-- | main/postgresql/postgresql.initd | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/main/postgresql/postgresql.initd b/main/postgresql/postgresql.initd index 2ca8420e10..d47c50540a 100644 --- a/main/postgresql/postgresql.initd +++ b/main/postgresql/postgresql.initd @@ -21,7 +21,7 @@ get_config() { checkconfig() { configured_port=$(get_config port) : ${configured_port:=${PGPORT:-5432}} - socket_path=$(get_config unix_socket_directory) + socket_path=$(get_config unix_socket_directories) : ${socket_path:=/var/run/postgresql} checkpath -d -m 0770 -o postgres:postgres ${socket_path} |