From a20877c377e6ed67af56bc523bf8e9c1ced13d87 Mon Sep 17 00:00:00 2001 From: billz Date: Fri, 6 Nov 2020 09:04:22 +0000 Subject: [PATCH] Add RASPI_DNSMASQ_ETH0 to default config --- config/config.php | 1 + includes/defaults.php | 1 + 2 files changed, 2 insertions(+) diff --git a/config/config.php b/config/config.php index 030df874..90b96247 100755 --- a/config/config.php +++ b/config/config.php @@ -11,6 +11,7 @@ define('RASPI_CACHE_PATH', sys_get_temp_dir() . '/raspap'); // These are typical for default RPi installs. Modify if needed. define('RASPI_DNSMASQ_CONFIG', '/etc/dnsmasq.d/090_raspap.conf'); define('RASPI_DNSMASQ_LEASES', '/var/lib/misc/dnsmasq.leases'); +define('RASPI_DNSMASQ_ETH0', '/etc/dnsmasq.d/090_eth0.conf'); define('RASPI_ADBLOCK_LISTPATH', '/etc/raspap/adblock/'); define('RASPI_ADBLOCK_CONFIG', '/etc/dnsmasq.d/090_adblock.conf'); define('RASPI_HOSTAPD_CONFIG', '/etc/hostapd/hostapd.conf'); diff --git a/includes/defaults.php b/includes/defaults.php index fb543d43..b69ef2aa 100755 --- a/includes/defaults.php +++ b/includes/defaults.php @@ -16,6 +16,7 @@ $defaults = [ // These are typical for default RPi installs. Modify if needed. 'RASPI_DNSMASQ_CONFIG' => '/etc/dnsmasq.d/090_raspap.conf', 'RASPI_DNSMASQ_LEASES' => '/var/lib/misc/dnsmasq.leases', + 'RASPI_DNSMASQ_ETH0' => '/etc/dnsmasq.d/090_eth0.conf', 'RASPI_ADBLOCK_LISTPATH' => '/etc/raspap/adblock/', 'RASPI_ADBLOCK_CONFIG' => '/etc/dnsmasq.d/090_adblock.conf', 'RASPI_HOSTAPD_CONFIG' => '/etc/hostapd/hostapd.conf',