rename pass_mgr to secret-mgr

This commit is contained in:
lyn
2026-03-24 10:08:00 +00:00
parent 95d22aa42d
commit 8b4b5de3b5
13 changed files with 39 additions and 39 deletions

View File

@@ -3,11 +3,11 @@
# Get the directory where this script is located
SCRIPT_DIR="$(cd "$(dirname "$0")" && pwd)"
# Get username from pass_mgr
username=$(pass_mgr get-username --key keycloak)
# Get username from secret-mgr
username=$(secret-mgr get-username --key keycloak)
if [[ -z "$username" ]]; then
echo "Error: No keycloak username found in pass_mgr"
echo "Error: No keycloak username found in secret-mgr"
exit 1
fi