Files
homelabstack/scripts/fix-resume-oauth-link.sh
ginnoir 51acb44322
Deploy to valhalla / deploy (push) Has been cancelled
Ship homelab quick wins: Recyclarr, infra pins, jd.ginnoir.com, and LAN lockdown.
Add Recyclarr to the media stack, pin database/object-store/Caddy/Vault images with Watchtower disabled, expose JDownloader at jd.ginnoir.com, and restrict minio/homarr/docs to internal_only. Mark TB-002–004 and TB-033 complete; bundle batch-3 OIDC env for FreshRSS, ownCloud, and Reactive Resume.
2026-06-11 02:28:06 -05:00

11 lines
431 B
Bash

#!/usr/bin/env bash
set -euo pipefail
echo "=== resume: allow OAuth to link existing email/password account ==="
docker exec postgres_resume psql -U postgres -d postgres -c \
"UPDATE \"user\" SET email_verified = true WHERE username = 'ginnoir';"
docker exec postgres_resume psql -U postgres -d postgres -c \
"SELECT email, email_verified, username FROM \"user\";"
echo "done — retry Authentik login on resume.ginnoir.com"