mirror of https://github.com/zulip/zulip.git
install: $ZULIP_ADMINISTRATOR may be unset for non-frontend hosts.
This commit is contained in:
parent
48a56f8b9a
commit
81644f110e
|
@ -524,11 +524,13 @@ if has_class "zulip::app_frontend_base"; then
|
|||
fi
|
||||
|
||||
# Set up a basic .gitconfig for the 'zulip' user
|
||||
(
|
||||
cd / # Make sure the current working directory is readable by zulip
|
||||
su zulip -c "git config --global user.email $ZULIP_ADMINISTRATOR"
|
||||
su zulip -c "git config --global user.name 'Zulip Server ($EXTERNAL_HOST)'"
|
||||
)
|
||||
if [ -n "$ZULIP_ADMINISTRATOR" ]; then
|
||||
(
|
||||
cd / # Make sure the current working directory is readable by zulip
|
||||
su zulip -c "git config --global user.email $ZULIP_ADMINISTRATOR"
|
||||
su zulip -c "git config --global user.name 'Zulip Server ($EXTERNAL_HOST)'"
|
||||
)
|
||||
fi
|
||||
|
||||
if [ -n "$NO_INIT_DB" ]; then
|
||||
set +x
|
||||
|
|
Loading…
Reference in New Issue