From 4a9557cec74ef12f2b7263335039186ed8202fea Mon Sep 17 00:00:00 2001 From: Étienne Loks Date: Mon, 17 Feb 2020 18:29:25 +0100 Subject: config.template: scan a conf.d dir for extra conf --- install/config.template | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'install') diff --git a/install/config.template b/install/config.template index 0a8107640..f0f086545 100644 --- a/install/config.template +++ b/install/config.template @@ -5,3 +5,9 @@ ISHTAR_LOCALE=fr_FR USE_CELERY=no USE_LIBREOFFICE=no ISHTAR_LIB_PATH=/usr/lib/python3/dist-packages/ + +if [ -d conf.d ]; then + for file in $(ls conf.d/); do + source conf.d/$file; + done +fi -- cgit v1.2.3