Revision 6d4fd80b
Added by Chris Buechler about 9 years ago
src/etc/inc/interfaces.inc | ||
---|---|---|
3553 | 3553 |
break; |
3554 | 3554 |
} |
3555 | 3555 |
|
3556 |
if ($linkupevent == false) { |
|
3556 |
if ($linkupevent == false && !platform_booting()) {
|
|
3557 | 3557 |
if (!function_exists('services_dhcpd_configure')) { |
3558 | 3558 |
require_once("services.inc"); |
3559 | 3559 |
} |
... | ... | |
3562 | 3562 |
services_unbound_configure(); |
3563 | 3563 |
} |
3564 | 3564 |
|
3565 |
if (isset($config['dnsmasq']['enable'])) { |
|
3566 |
services_dnsmasq_configure(); |
|
3567 |
} |
|
3568 |
|
|
3565 | 3569 |
services_dhcpd_configure("inet6"); |
3566 | 3570 |
} |
3567 | 3571 |
|
Also available in: Unified diff
Don't start unbound in track6 config if system is booting. Add dnsmasq here as well. Based on PR 2943. Ticket #6186