updated my variables in master.conf

This commit is contained in:
2026-04-14 17:38:44 -04:00
parent f1529db3a0
commit 6f2e19265b
4 changed files with 110 additions and 80 deletions
+6 -9
View File
@@ -304,7 +304,6 @@ declare -A PROFILE_SKIP_DISK_CHECK=(
# FAILOVER — remote down, internet up — start remote's containers locally (additive)
# Own normal containers keep running — failover containers added on top
# NO_INTERNET — internet down — stop public-facing containers, wait for recovery
# DARK — remote down + internet down — same actions as NO_INTERNET
#
# Handback sequence when remote returns after FAILOVER:
# 1. Strike confirmation — FAILOVER_HANDBACK_STRIKES consecutive remote-up checks
@@ -670,7 +669,7 @@ MEDIA_MAINTENANCE_JOBS=(
# Usage thresholds in GB
RAMDISK_WARN_GB=6.8 # flip symlink to SSD at or above this usage
RAMDISK_LOW_GB=5.5 # flip symlink back to ramdisk when usage drops here
RAMDISK_LOW_GB=5.0 # flip symlink back to ramdisk when usage drops here
RAMDISK_SSD_MIN_GB=20 # minimum free GB on SSD required before allowing flip to SSD
# Cleanup age thresholds — files must be older than these AND not open by any process
@@ -698,10 +697,8 @@ MEDIA_MAINTENANCE_JOBS=(
# Each domain and subdomain is a separate entry — they have independent certs.
# Add your public-facing domains — uncomment and replace with your actual domains.
CERT_MONITOR_DOMAINS=(
# "yourdomain.com"
# "auth.yourdomain.com"
# "emby.yourdomain.com"
# "nextcloud.yourdomain.com"
"Gmer4Lfe.com"
"Gmer4Lfe.us"
)
CERT_WARN_DAYS=30 # notify warning when cert expires within this many days
CERT_CRIT_DAYS=7 # notify critical when cert expires within this many days
@@ -765,7 +762,7 @@ SMART_IGNORE_DRIVES=(
# Shows active streams, library counts, transcode vs direct play ratio.
# Requires an API key from Emby Settings → API Keys in the Emby WebUI.
EMBY_URL="http://localhost:8096"
EMBY_API_KEY="" # paste your Emby API key here
EMBY_API_KEY="0c27448d93a7431f9ac63569f7655829" # paste your Emby API key here
EMBY_REPORT_DAYS=7 # number of days to include in the report period
EMBY_REPORT_TOP_N=10 # number of top content items to show in report
@@ -835,8 +832,8 @@ SMART_IGNORE_DRIVES=(
# false = reboot anyway regardless of this condition (aggressive)
# Philosophy: a graceful reboot before crash is always better than a hard crash mid-operation
SYS_WATCHDOG_ABORT_ON_ZFS_UNHEALTHY=true # unhealthy pool + reboot risks data loss
SYS_WATCHDOG_ABORT_ON_PARITY=true # aborting parity check beats crashing mid-check
SYS_WATCHDOG_ABORT_ON_MOVER=true # aborting mover beats crashing mid-move
SYS_WATCHDOG_ABORT_ON_PARITY=false # aborting parity check beats crashing mid-check
SYS_WATCHDOG_ABORT_ON_MOVER=false # aborting mover beats crashing mid-move
# ==============================================================================================
# ──────────────────────── End Of User Variables ───────────────────────────────────────────────