Rename from "sanity results" to "startup results"
This commit is contained in:
parent
c73f96525a
commit
a2776e64f6
@ -1,8 +1,8 @@
|
|||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
# Check if setup is necessary, do setup as needed
|
# Check if setup is necessary, do setup as needed
|
||||||
echo "Performing startup checks..."
|
echo "Performing startup checks..."
|
||||||
sanity_results=( $(./manage.py startup_checks) )
|
startup_results=( $(./manage.py startup_checks) )
|
||||||
if [[ ${sanity_results[0]} == True ]]; then
|
if [[ ${startup_results[0]} == True ]]; then
|
||||||
echo "Running migrations (setting up DB)..."
|
echo "Running migrations (setting up DB)..."
|
||||||
{
|
{
|
||||||
./manage.py migrate && echo "Migrations complete!"
|
./manage.py migrate && echo "Migrations complete!"
|
||||||
@ -12,13 +12,13 @@ if [[ ${sanity_results[0]} == True ]]; then
|
|||||||
else
|
else
|
||||||
echo "Database is ready to go."
|
echo "Database is ready to go."
|
||||||
fi
|
fi
|
||||||
if [[ ${sanity_results[1]} == True ]]; then
|
if [[ ${startup_results[1]} == True ]]; then
|
||||||
echo "Warning: no admin user available. Consult docs for instructions."
|
echo "Warning: no admin user available. Consult docs for instructions."
|
||||||
fi
|
fi
|
||||||
if [[ ${sanity_results[2]} == True ]]; then
|
if [[ ${startup_results[2]} == True ]]; then
|
||||||
echo "Warning: Shynet's hostname is not set. The script won't work correctly. Consult docs for instructions."
|
echo "Warning: Shynet's hostname is not set. The script won't work correctly. Consult docs for instructions."
|
||||||
fi
|
fi
|
||||||
if [[ ${sanity_results[3]} == True ]]; then
|
if [[ ${startup_results[3]} == True ]]; then
|
||||||
echo "Warning: Shynet's whitelabel is not set. Consult docs for instructions."
|
echo "Warning: Shynet's whitelabel is not set. Consult docs for instructions."
|
||||||
fi
|
fi
|
||||||
echo "Startup checks complete!"
|
echo "Startup checks complete!"
|
||||||
|
Loading…
Reference in New Issue
Block a user