2015-04-26 19:45:32 +00:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
set -eu -o pipefail
|
|
|
|
|
2015-04-29 00:12:16 +00:00
|
|
|
fqdn=$(hostname -f)
|
2015-04-26 19:45:32 +00:00
|
|
|
|
2015-04-29 04:57:58 +00:00
|
|
|
chown -R cloudron.cloudron /app/data
|
|
|
|
|
2015-06-24 21:26:43 +00:00
|
|
|
# clean up old logs
|
|
|
|
rm -rf /home/cloudron/gogs/log && mkdir -p /home/cloudron/gogs/log
|
|
|
|
chown cloudron:cloudron /home/cloudron/gogs/log
|
|
|
|
|
2015-04-29 04:57:58 +00:00
|
|
|
# Dockerfile changes the ownership of this file to make it writable by cloudron user
|
|
|
|
sed -e "s/^Port .*/Port ${SSH_PORT}/" \
|
|
|
|
-e "s/^#ListenAddress .*/ListenAddress 0.0.0.0/" \
|
|
|
|
-i /etc/ssh/sshd_config
|
2015-04-29 00:12:16 +00:00
|
|
|
|
2015-08-18 20:44:26 +00:00
|
|
|
mkdir -p /home/cloudron/gogs/custom/conf
|
2015-06-24 18:36:12 +00:00
|
|
|
|
2015-04-29 00:12:16 +00:00
|
|
|
sed -e "s/##HOSTNAME/${fqdn}/g" \
|
|
|
|
-e "s/##SSH_PORT/${SSH_PORT}/g" \
|
|
|
|
-e "s/##MYSQL_HOST/${MYSQL_HOST}/g" \
|
|
|
|
-e "s/##MYSQL_PORT/${MYSQL_PORT}/g" \
|
|
|
|
-e "s/##MYSQL_USERNAME/${MYSQL_USERNAME}/g" \
|
|
|
|
-e "s/##MYSQL_PASSWORD/${MYSQL_PASSWORD}/g" \
|
|
|
|
-e "s/##MYSQL_DATABASE/${MYSQL_DATABASE}/g" \
|
|
|
|
-e "s/##MAIL_SERVER/${MAIL_SMTP_SERVER}/g" \
|
2015-04-29 02:29:12 +00:00
|
|
|
-e "s/##MAIL_PORT/${MAIL_SMTP_PORT}/g" \
|
2015-04-29 00:12:16 +00:00
|
|
|
-e "s/##MAIL_FROM/${MAIL_SMTP_USERNAME}@${MAIL_DOMAIN}/g" \
|
2015-04-29 04:57:58 +00:00
|
|
|
-e "s/##SECRET_KEY/$(pwgen -1 -s)/g" \
|
2015-04-29 00:12:16 +00:00
|
|
|
/home/cloudron/app.ini.template > "/home/cloudron/gogs/custom/conf/app.ini"
|
|
|
|
|
2015-08-18 20:44:26 +00:00
|
|
|
chown cloudron:cloudron /home/cloudron/gogs/custom/conf/app.ini
|
|
|
|
|
|
|
|
/usr/bin/supervisord --configuration /etc/supervisor/supervisord.conf --nodaemon -i Gogs &
|
|
|
|
|
2015-08-18 22:03:27 +00:00
|
|
|
# Wait for gogs to finish db setup, before we insert ldap source in db
|
2015-08-18 22:12:29 +00:00
|
|
|
while ! curl --fail http://localhost:3000/healthcheck; do
|
2015-08-18 22:03:27 +00:00
|
|
|
echo "Waiting for gogs to come up"
|
|
|
|
sleep 1
|
|
|
|
done
|
2015-08-18 20:44:26 +00:00
|
|
|
|
2015-06-24 18:01:16 +00:00
|
|
|
# id, type, name, is_actived, cfg, allow_auto_register, created, updated
|
2015-06-24 22:36:41 +00:00
|
|
|
mysql -u"${MYSQL_USERNAME}" -p"${MYSQL_PASSWORD}" -h mysql --database="${MYSQL_DATABASE}" \
|
2015-08-17 19:31:51 +00:00
|
|
|
-e "REPLACE INTO login_source VALUES (1,2,'cloudron',1,'{\"Name\":\"cloudron\",\"Host\":\"${LDAP_SERVER}\",\"Port\":${LDAP_PORT},\"UseSSL\":false,\"UserBase\":\"${LDAP_USERS_BASE_DN}\",\"AttributeUsername\":\"uid\",\"AttributeName\":\"\",\"AttributeSurname\":\"\",\"AttributeMail\":\"mail\",\"Filter\":\"(\\\\u0026(objectClass=user)(uid=%s))\",\"Enabled\":true}',1,'2015-06-24 17:14:12','2015-06-24 17:25:03');"
|
2015-06-24 18:01:16 +00:00
|
|
|
|
2015-04-29 04:57:58 +00:00
|
|
|
wait
|
2015-04-26 19:45:32 +00:00
|
|
|
|