Fix ARP flush command

Signed-off-by: DL6ER <dl6er@dl6er.de>
This commit is contained in:
DL6ER 2024-12-07 10:27:20 +01:00
parent 03932e8ca7
commit 11e00e04b5
No known key found for this signature in database
GPG key ID: 00135ACBD90B28DD

View file

@ -32,7 +32,7 @@ flushARP(){
fi
# Stop FTL to prevent database access
if ! output=$(pihole-FTL service stop 2>&1); then
if ! output=$(service pihole-FTL stop 2>&1); then
echo -e "${OVER} ${CROSS} Failed to stop FTL"
echo " Output: ${output}"
return 1
@ -64,7 +64,7 @@ flushARP(){
fi
# Start FTL again
if ! output=$(pihole-FTL service restart 2>&1); then
if ! output=$(service pihole-FTL restart 2>&1); then
echo -e "${OVER} ${CROSS} Failed to restart FTL"
echo " Output: ${output}"
return 1