From 5fe4a6b0403264e85d8dba7476bad4812106fe68 Mon Sep 17 00:00:00 2001 From: harkon Date: Tue, 2 Dec 2025 15:56:46 +0200 Subject: [PATCH] fix: enable debug output for blueprint creation --- scripts/setup-authentik.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/scripts/setup-authentik.sh b/scripts/setup-authentik.sh index ab3aad9..903da63 100755 --- a/scripts/setup-authentik.sh +++ b/scripts/setup-authentik.sh @@ -132,7 +132,9 @@ import_blueprint() { "path": "'"$blueprint_path"'", "context": {}, "enabled": true - }' 2>/dev/null || echo "") + }') + + echo "DEBUG: Blueprint creation response: $blueprint_response" local blueprint_pk blueprint_pk=$(echo "$blueprint_response" | python3 -c "import sys, json; print(json.load(sys.stdin).get('pk', ''))" 2>/dev/null || echo "")