mirror of
https://github.com/pi-hole/pi-hole
synced 2025-02-21 20:42:01 +00:00
Only get the first gateway for chronometer
Signed-off-by: Mark Drobnak <mark.drobnak@gmail.com>
This commit is contained in:
parent
6f276ae4bb
commit
dac27f1f18
@ -243,7 +243,7 @@ get_sys_stats() {
|
||||
disk_total="${disk_raw[1]}"
|
||||
disk_perc="${disk_raw[2]}"
|
||||
|
||||
net_gateway=$(ip route | grep default | cut -d ' ' -f 3)
|
||||
net_gateway=$(ip route | grep default | cut -d ' ' -f 3 | head -n 1)
|
||||
|
||||
# Get DHCP stats, if feature is enabled
|
||||
if [[ "$DHCP_ACTIVE" == "true" ]]; then
|
||||
|
Loading…
Reference in New Issue
Block a user