mirror of
https://github.com/zokradonh/kopano-docker
synced 2025-07-23 18:05:31 +00:00
ci: committing changes for meet
This commit is contained in:
parent
4ddb0c6da7
commit
663b9a2e5f
@ -24,7 +24,16 @@ echo "Updating $CONFIG_JSON"
|
||||
for setting in $(compgen -A variable KCCONF_MEET); do
|
||||
setting2=${setting#KCCONF_MEET_}
|
||||
# dots in setting2 need to be escaped to not be handled as separate entities in the json file
|
||||
case ${!setting} in
|
||||
true|TRUE|false|FALSE)
|
||||
jq ".\"${setting2//_/\".\"}\" = ${!setting}" $CONFIG_JSON | sponge $CONFIG_JSON
|
||||
;;
|
||||
*)
|
||||
jq ".\"${setting2//_/\".\"}\" = \"${!setting}\"" $CONFIG_JSON | sponge $CONFIG_JSON
|
||||
;;
|
||||
esac
|
||||
|
||||
|
||||
done
|
||||
|
||||
# enable Kopano WebApp in the app switcher
|
||||
|
Loading…
x
Reference in New Issue
Block a user