mirror of
https://github.com/netbox-community/netbox-docker.git
synced 2025-12-10 05:42:36 +00:00
fix SKIP_SUPERUSER check
This commit is contained in:
parent
6a52a48b71
commit
f951adcb5e
|
|
@ -49,7 +49,7 @@ if ! ./manage.py migrate --check >/dev/null 2>&1; then
|
|||
fi
|
||||
|
||||
# Create Superuser if required
|
||||
if [ "$SKIP_SUPERUSER" == "true" ]; then
|
||||
if [ "$SKIP_SUPERUSER" = "true" ]; then
|
||||
echo "↩️ Skip creating the superuser"
|
||||
else
|
||||
if [ -z ${SUPERUSER_NAME+x} ]; then
|
||||
|
|
|
|||
Loading…
Reference in a new issue