diff options
author | Étienne Loks <etienne.loks@iggdrasil.net> | 2020-02-17 18:29:25 +0100 |
---|---|---|
committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2020-07-01 18:02:28 +0200 |
commit | 2bce869fb2439c64a5c794aac286e744b3124925 (patch) | |
tree | 44e1c81505f5ea63511ecb3ff1ce5be7d3def950 /install | |
parent | 6efc82f9af929f0eea83b2b8dbf57fa7c8280f57 (diff) | |
download | Ishtar-2bce869fb2439c64a5c794aac286e744b3124925.tar.bz2 Ishtar-2bce869fb2439c64a5c794aac286e744b3124925.zip |
config.template: scan a conf.d dir for extra conf
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 |