1
0
mirror of https://github.com/peeringdb/peeringdb.git synced 2024-05-11 05:55:09 +00:00
Files
peeringdb-peeringdb/Ctl/docker/entrypoint.sh

44 lines
758 B
Bash
Raw Normal View History

2020-04-14 10:45:36 -05:00
#!/bin/sh
2020-04-18 19:03:25 +00:00
function migrate() {
2020-04-14 10:45:36 -05:00
echo applying migrations - django_peeringdb
# always fake, since peeeringdb_server does not use concrete models
manage migrate django_peeringdb --fake
echo applying all migrations
manage migrate
2020-04-18 19:03:25 +00:00
}
2020-04-14 10:45:36 -05:00
cd /srv/www.peeringdb.com
case "$1" in
"uwsgi" )
echo starting uwsgi
2020-04-18 19:03:25 +00:00
if [[ "$PDB_NO_MIGRATE" == "" ]]; then
migrate
fi
2020-04-14 10:45:36 -05:00
exec venv/bin/uwsgi --ini etc/django-uwsgi.ini
;;
2020-04-18 19:03:25 +00:00
"migrate" )
migrate
;;
2020-04-14 10:45:36 -05:00
"inetd" )
inetd -f -e -q 1024
;;
"in.whois" )
exec ./in.whoisd
;;
"whois" )
line=$(head -1 | tr -cd '[:alnum:]._-')
exec manage pdb_whois "$line"
;;
"/bin/sh" )
echo dropping to shell
exec /bin/sh
;;
* )
exec manage $@
;;
esac