diff options
Diffstat (limited to 'install')
-rw-r--r-- | install/config.template | 6 |
1 files changed, 6 insertions, 0 deletions
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 |