d3638d49ae
Beispiel-Setup: ein Repo je AG fuer Zugriffskontrolle, zentrales Deploy-Repo mit Validierung, Rollout auf beide Proxys, DB-Rebuild je Gruppe und Auto-Rollback auf den letzten guten Stand. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
7 lines
202 B
Bash
Executable File
7 lines
202 B
Bash
Executable File
#!/usr/bin/env bash
|
|
# /usr/local/sbin/squidguard-reload.sh
|
|
# Root-owned (0755). Laedt Squid neu, damit die frisch gebauten .db aktiv werden.
|
|
set -euo pipefail
|
|
squid -k reconfigure
|
|
echo "squid reloaded"
|