Update healthchecks-install.sh

This commit is contained in:
CanbiZ 2025-06-02 12:25:41 +02:00
parent c04fcfea68
commit f7eb314d59

View File

@ -92,7 +92,7 @@ EOF
ADMIN_EMAIL="admin@helper-scripts.local" ADMIN_EMAIL="admin@helper-scripts.local"
ADMIN_PASSWORD="$DB_PASS" ADMIN_PASSWORD="$DB_PASS"
cat <<EOF | $STD .venv/bin/python3 manage.py shell cat <<EOF | $STD /opt/healthchecks/.venv/bin/python3 manage.py shell
from django.contrib.auth import get_user_model from django.contrib.auth import get_user_model
User = get_user_model() User = get_user_model()
@ -108,7 +108,7 @@ if not User.objects.filter(email="${ADMIN_EMAIL}").exists():
u.save() u.save()
EOF EOF
$STD python3 manage.py migrate $STD /opt/healthchecks/.venv/bin/python3 manage.py migrate
msg_ok "Installed healthchecks" msg_ok "Installed healthchecks"
msg_info "Creating Service" msg_info "Creating Service"