mirror of
https://github.com/pi-hole/pi-hole
synced 2024-12-22 23:08:07 +00:00
fix indentations
This commit is contained in:
parent
bdfc86f850
commit
9a4c5cef86
@ -175,16 +175,14 @@ function Reload() {
|
||||
}
|
||||
|
||||
function DisplayBlist() {
|
||||
clear
|
||||
echo -e " Displaying Gravity Affected Domains \n"
|
||||
|
||||
GRD="$blacklist"
|
||||
count=1
|
||||
while IFS= read -r RD
|
||||
do
|
||||
echo "${count}: $RD"
|
||||
count=$((count+1))
|
||||
done < "$blacklist"
|
||||
clear
|
||||
echo -e " Displaying Gravity Affected Domains \n"
|
||||
count=1
|
||||
while IFS= read -r AD
|
||||
do
|
||||
echo "${count}: $AD"
|
||||
count=$((count+1))
|
||||
done < "$blacklist"
|
||||
}
|
||||
|
||||
###################################################
|
||||
|
@ -188,16 +188,14 @@ function Reload() {
|
||||
}
|
||||
|
||||
function DisplayWlist() {
|
||||
clear
|
||||
echo -e " Displaying Gravity Resistant Domains \n"
|
||||
|
||||
GRD="$whitelist"
|
||||
count=1
|
||||
while IFS= read -r RD
|
||||
do
|
||||
clear
|
||||
echo -e " Displaying Gravity Resistant Domains \n"
|
||||
count=1
|
||||
while IFS= read -r RD
|
||||
do
|
||||
echo "${count}: $RD"
|
||||
count=$((count+1))
|
||||
done < "$whitelist"
|
||||
count=$((count+1))
|
||||
done < "$whitelist"
|
||||
}
|
||||
|
||||
###################################################
|
||||
|
Loading…
Reference in New Issue
Block a user