docs(restore): mark authelia smoke successful and schedule
This commit is contained in:
@@ -117,7 +117,30 @@ exec /mnt/user/services/homelab-infra/ops/restore-tests/run-restore-job-with-ntf
|
||||
immich homelab-info
|
||||
```
|
||||
|
||||
## Script 6 - `monthly-random-restore`
|
||||
## Script 6 - `restore-authelia-bimonthly`
|
||||
|
||||
Cron:
|
||||
|
||||
- `30 7 * * 6` (jeden Samstag 07:30)
|
||||
|
||||
Guard: nur am zweiten Samstag in geraden Monaten ausfuehren.
|
||||
|
||||
```bash
|
||||
#!/bin/bash
|
||||
month=$(date +%-m)
|
||||
day=$(date +%-d)
|
||||
case "$month" in
|
||||
2|4|6|8|10|12) ;;
|
||||
*) exit 0 ;;
|
||||
esac
|
||||
if [ "$day" -lt 8 ] || [ "$day" -gt 14 ]; then
|
||||
exit 0
|
||||
fi
|
||||
exec /mnt/user/services/homelab-infra/ops/restore-tests/run-restore-job-with-ntfy.sh \
|
||||
authelia homelab-info
|
||||
```
|
||||
|
||||
## Script 7 - `monthly-random-restore`
|
||||
|
||||
Cron:
|
||||
|
||||
@@ -130,8 +153,8 @@ exec /mnt/user/services/homelab-infra/ops/restore-tests/monthly-random-restore.s
|
||||
|
||||
## Stand
|
||||
|
||||
- die Bash-Jobs wurden am 2026-05-07 hostseitig erfolgreich verifiziert
|
||||
- `freshness`, `vaultwarden`, `gitea` und `paperless` laufen damit prinzipiell automatisch
|
||||
- die ersten Bash-Jobs wurden am 2026-05-07 hostseitig erfolgreich verifiziert
|
||||
- `freshness`, `vaultwarden`, `gitea`, `paperless`, `immich` und `authelia` sind als Host-Jobs verfuegbar
|
||||
- ntfy-Wrapper schreibt Erfolg/Fehler-Meldungen an die definierten Topics
|
||||
|
||||
## Fehler-Topic
|
||||
|
||||
Reference in New Issue
Block a user