chore: sync homelab ops, identity, and monitoring docs

This commit is contained in:
Fizzlepoof
2026-05-21 02:01:09 +00:00
parent 4c41b19e13
commit 2e99873634
44 changed files with 6295 additions and 346 deletions

View File

@@ -71,3 +71,8 @@ ssh_args() {
ssh_cmd() {
printf 'ssh %s' "$(ssh_args)"
}
latest_dump_for_db() {
local db="$1"
find "$PD_DB_DUMP_ROOT" -maxdepth 1 -type f -name "${db}_*.sql.gz" | sort | tail -n 1
}