From ae9e945851076f94d0b0f5cc0ef8ef9736135384 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Christian=20Ma=CC=88der?= Date: Wed, 6 Feb 2019 12:38:36 +0100 Subject: [PATCH] Remove deprecation warning for netboxcommunity images --- docker/docker-entrypoint.sh | 23 ----------------------- 1 file changed, 23 deletions(-) diff --git a/docker/docker-entrypoint.sh b/docker/docker-entrypoint.sh index 796c202..4cef815 100755 --- a/docker/docker-entrypoint.sh +++ b/docker/docker-entrypoint.sh @@ -1,27 +1,6 @@ #!/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..." @@ -70,8 +49,6 @@ done echo "✅ Initialisation is done." -depraction_warning - # launch whatever is passed by docker # (i.e. the RUN instruction in the Dockerfile) exec ${@}