From b41da8be170802eb873e78603e0c91d35db6af9d Mon Sep 17 00:00:00 2001 From: harkon Date: Tue, 2 Dec 2025 16:08:58 +0200 Subject: [PATCH] fix: use relative path for blueprint import (relative to /blueprints) --- scripts/setup-authentik.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/setup-authentik.sh b/scripts/setup-authentik.sh index 81c4158..71fc72c 100755 --- a/scripts/setup-authentik.sh +++ b/scripts/setup-authentik.sh @@ -122,7 +122,7 @@ import_blueprint() { # Create blueprint instance local blueprint_response local blueprint_path - blueprint_path="/blueprints/custom/$(basename "$BOOTSTRAP_FILE")" + blueprint_path="custom/$(basename "$BOOTSTRAP_FILE")" blueprint_response=$(curl -k -X POST "$AUTHENTIK_API_URL/managed/blueprints/" \ -H "Content-Type: application/json" \