78 lines
2.0 KiB
Bash
Executable File
78 lines
2.0 KiB
Bash
Executable File
#!/bin/bash
|
||
set -e
|
||
|
||
# inform about deprecation
|
||
|
||
depraction_warning() {
|
||
echo ""
|
||
echo ""
|
||
echo ""
|
||
echo "⚠️ WARNING ⚠️ WARNING ⚠️ WARNING ⚠️"
|
||
echo ""
|
||
echo "📣️ The docker images for Netbox have moved to 'netboxcommunity/netbox'."
|
||
echo ""
|
||
echo "❌ Your setup will not get any updates anymore."
|
||
echo "❌ Your setup will break after 2019."
|
||
echo ""
|
||
echo "ℹ️ Just rename 'ninech/netbox' to 'netboxcommunity/netbox' and your good again."
|
||
echo ""
|
||
echo ""
|
||
echo ""
|
||
}
|
||
|
||
depraction_warning
|
||
|
||
# wait shortly and then run db migrations (retry on error)
|
||
while ! ./manage.py migrate 2>&1; do
|
||
echo "⏳ Waiting on DB..."
|
||
sleep 3
|
||
done
|
||
|
||
# create superuser silently
|
||
if [ -z ${SUPERUSER_NAME+x} ]; then
|
||
SUPERUSER_NAME='admin'
|
||
fi
|
||
if [ -z ${SUPERUSER_EMAIL+x} ]; then
|
||
SUPERUSER_EMAIL='admin@example.com'
|
||
fi
|
||
if [ -z ${SUPERUSER_PASSWORD+x} ]; then
|
||
if [ -f "/run/secrets/superuser_password" ]; then
|
||
SUPERUSER_PASSWORD="$(< /run/secrets/superuser_password)"
|
||
else
|
||
SUPERUSER_PASSWORD='admin'
|
||
fi
|
||
fi
|
||
if [ -z ${SUPERUSER_API_TOKEN+x} ]; then
|
||
if [ -f "/run/secrets/superuser_api_token" ]; then
|
||
SUPERUSER_API_TOKEN="$(< /run/secrets/superuser_api_token)"
|
||
else
|
||
SUPERUSER_API_TOKEN='0123456789abcdef0123456789abcdef01234567'
|
||
fi
|
||
fi
|
||
|
||
echo "💡 Username: ${SUPERUSER_NAME}, E-Mail: ${SUPERUSER_EMAIL}"
|
||
|
||
./manage.py shell --interface python << END
|
||
from django.contrib.auth.models import User
|
||
from users.models import Token
|
||
if not User.objects.filter(username='${SUPERUSER_NAME}'):
|
||
u=User.objects.create_superuser('${SUPERUSER_NAME}', '${SUPERUSER_EMAIL}', '${SUPERUSER_PASSWORD}')
|
||
Token.objects.create(user=u, key='${SUPERUSER_API_TOKEN}')
|
||
END
|
||
|
||
for script in /opt/netbox/startup_scripts/*.py; do
|
||
echo "⚙️ Executing '$script'"
|
||
./manage.py shell --interface python < "${script}"
|
||
done
|
||
|
||
# copy static files
|
||
./manage.py collectstatic --no-input
|
||
|
||
echo "✅ Initialisation is done."
|
||
|
||
depraction_warning
|
||
|
||
# launch whatever is passed by docker
|
||
# (i.e. the RUN instruction in the Dockerfile)
|
||
exec ${@}
|