mirror of
https://github.com/pi-hole/pi-hole.git
synced 2025-04-05 07:00:19 +00:00
Added functions for speedtest
This commit is contained in:
parent
9d9388965d
commit
7c80a703aa
1 changed files with 27 additions and 5 deletions
|
@ -13,6 +13,7 @@ readonly dnsmasqconfig="/etc/dnsmasq.d/01-pihole.conf"
|
||||||
readonly dhcpconfig="/etc/dnsmasq.d/02-pihole-dhcp.conf"
|
readonly dhcpconfig="/etc/dnsmasq.d/02-pihole-dhcp.conf"
|
||||||
# 03 -> wildcards
|
# 03 -> wildcards
|
||||||
readonly dhcpstaticconfig="/etc/dnsmasq.d/04-pihole-static-dhcp.conf"
|
readonly dhcpstaticconfig="/etc/dnsmasq.d/04-pihole-static-dhcp.conf"
|
||||||
|
readonly speedtestfile="/var/www/html/admin/scripts/pi-hole/speedtest/speedtest.sh"
|
||||||
|
|
||||||
helpFunc() {
|
helpFunc() {
|
||||||
echo "Usage: pihole -a [options]
|
echo "Usage: pihole -a [options]
|
||||||
|
@ -313,11 +314,32 @@ SetWebUILayout() {
|
||||||
change_setting "WEBUIBOXEDLAYOUT" "${args[2]}"
|
change_setting "WEBUIBOXEDLAYOUT" "${args[2]}"
|
||||||
}
|
}
|
||||||
|
|
||||||
ChageSpeedTestStatus(){
|
|
||||||
change_setting "ENABLESPEEDTEST" "${args[2]}"
|
|
||||||
}
|
|
||||||
ChageSpeedTestSchedule(){
|
ChageSpeedTestSchedule(){
|
||||||
change_setting "SPEEDTESTSCHEDULE" "${args[2]}"
|
if [[ "${args[2]}" =~ ^[0-9]+$ ]]; then
|
||||||
|
if [ "${args[2]}" -ge 0 -a "${args[2]}" -le 24 ]; then
|
||||||
|
change_setting "SPEEDTESTSCHEDULE" "${args[2]}"
|
||||||
|
SetCronTab ${args[2]}
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
}
|
||||||
|
|
||||||
|
SetCronTab()
|
||||||
|
{
|
||||||
|
# Remove OLD
|
||||||
|
crontab -l >crontab.tmp
|
||||||
|
old=$(cat crontab.tmp | awk '/speedtest.sh/ {print FNR}')
|
||||||
|
if [[ "$old" =~ ^[0-9]+$ ]]; then
|
||||||
|
crontab -l | sed -e "${old}d" >crontab.tmp
|
||||||
|
fi
|
||||||
|
# Add New
|
||||||
|
if [[ "$1" == "0" ]]; then
|
||||||
|
crontab crontab.tmp && rm -f crontab.tmp
|
||||||
|
else
|
||||||
|
newtab="0 */"${1}" * * * sh "${speedtestfile}" > /dev/null 2>&1"
|
||||||
|
printf '%s\n' "$newtab" >>crontab.tmp
|
||||||
|
crontab crontab.tmp && rm -f crontab.tmp
|
||||||
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
CustomizeAdLists() {
|
CustomizeAdLists() {
|
||||||
|
@ -461,7 +483,7 @@ main() {
|
||||||
"-i" | "interface" ) SetListeningMode "$@";;
|
"-i" | "interface" ) SetListeningMode "$@";;
|
||||||
"-t" | "teleporter" ) Teleporter;;
|
"-t" | "teleporter" ) Teleporter;;
|
||||||
"adlist" ) CustomizeAdLists;;
|
"adlist" ) CustomizeAdLists;;
|
||||||
"speedtest" ) ChageSpeedTestStatus;
|
"-s" ) ChageSpeedTestSchedule;;
|
||||||
* ) helpFunc;;
|
* ) helpFunc;;
|
||||||
esac
|
esac
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue