Browse Source

Change pihole interface if needed

Bob Mottram 8 years ago
parent
commit
a4318101ff
1 changed files with 8 additions and 0 deletions
  1. 8
    0
      src/freedombone-app-pihole

+ 8
- 0
src/freedombone-app-pihole View File

79
         return
79
         return
80
     fi
80
     fi
81
 
81
 
82
+    if [[ $(config_param_exists WIFI_INTERFACE) == "0" ]]; then
83
+        PIHOLE_IFACE=eth0
84
+    else
85
+        read_config_param WIFI_INTERFACE
86
+        PIHOLE_IFACE=$WIFI_INTERFACE
87
+        write_config_param "PIHOLE_IFACE" "$PIHOLE_IFACE"
88
+    fi
89
+
82
     IPv4_address=$(get_ipv4_address)
90
     IPv4_address=$(get_ipv4_address)
83
     IPv6_address=$(get_ipv6_address)
91
     IPv6_address=$(get_ipv6_address)
84
 
92