We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4926213 commit af07d3eCopy full SHA for af07d3e
entrypoint.sh
@@ -155,6 +155,16 @@ puppetConfiguration() {
155
crudini --set /etc/zulip/zulip.conf http_proxy allow_ranges "${PROXY_ALLOW_RANGES}"
156
fi
157
158
+ if [ "$DB_NAME" != "zulip" ]; then
159
+ echo "Setting database name to $DB_NAME"
160
+ crudini --set /etc/zulip/zulip.conf postgresql database_name "$DB_NAME"
161
+ fi
162
+
163
+ if [ "$DB_USER" != "zulip" ]; then
164
+ echo "Setting database user to $DB_USER"
165
+ crudini --set /etc/zulip/zulip.conf postgresql database_user "$DB_USER"
166
167
168
/home/zulip/deployments/current/scripts/zulip-puppet-apply -f
169
}
170
configureCerts() {
0 commit comments