1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/adguardhome_ynh.git synced 2024-09-03 18:06:23 +02:00

fix and remove debug echo

This commit is contained in:
OniriCorpe 2023-12-31 03:48:46 +01:00
parent 06e61b08de
commit fab6dcce38

View file

@ -81,13 +81,10 @@ process_ips(){
# check if the so-called IP really is one
if ynh_validate_ip4 --ip_address="$ip" || ynh_validate_ip6 --ip_address="$ip"; then
# don't process if the IP is public and the port 53 closed
echo "IP validated: $ip"
if [ "$(is_public_ip "$ip")" == 0 ] && [ "$open_port_53" == "false" ]; then
if is_public_ip "$ip" && [ "$open_port_53" == "false" ]; then
# don't add this IP (do nothing)
echo "don't add"
:
else
echo "add"
# add this IP and a space as IP delimiter
processed_ips+="$ip "
fi