Upload PiHole HA Scripts and Configurations

This commit is contained in:
2026-07-06 10:47:07 +00:00
parent 7dbb13d31b
commit e0c4d62f0b
4 changed files with 89 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
#!/bin/sh
# Place under /etc/scripts for FTL Status check of keepalived
STATUS=$(ps ax | grep -v grep | grep pihole-FTL)
if [ "$STATUS" != "" ]
then
exit 0
else
exit 1
fi