From e8253ae91f60a4a553029e7cd74cf082b041d16d Mon Sep 17 00:00:00 2001 From: Calin Crisan Date: Sat, 2 Feb 2019 18:26:05 +0200 Subject: [PATCH] S72postgresql: minor improvement --- board/common/overlay/etc/init.d/S72postgresql | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/board/common/overlay/etc/init.d/S72postgresql b/board/common/overlay/etc/init.d/S72postgresql index b6b61b82ce..b081d457ad 100755 --- a/board/common/overlay/etc/init.d/S72postgresql +++ b/board/common/overlay/etc/init.d/S72postgresql @@ -35,7 +35,7 @@ start() { run_pg_ctl initdb -s -D ${DB_DIR} &>> ${LOG} test $? == 0 && msg_done || msg_fail - echo "include_if_exists = '/data/etc/postgresql.conf'" >> ${DB_DIR}/postgresql.conf + echo "include_if_exists = '${CONF}'" >> ${DB_DIR}/postgresql.conf fi msg_begin "Starting postgresql"