diff options
author | PiBa-NL <pba_2k3@yahoo.com> | 2017-07-12 00:26:42 +0200 |
---|---|---|
committer | PiBa-NL <PiBa.NL.dev@gmail.com> | 2018-04-23 21:39:12 +0200 |
commit | 43a9b03deb9db482713dfa1218662bce8b6360ce (patch) | |
tree | de8d6467774f61672b60e36bee297f2e813dd65b /src/etc/inc/services.inc | |
parent | 9dd655a0c36b907979d497586f9789170de748de (diff) | |
download | pfsense-43a9b03deb9db482713dfa1218662bce8b6360ce.zip pfsense-43a9b03deb9db482713dfa1218662bce8b6360ce.tar.gz |
Gateways, allow for configuring a gatewaygroup as the default gateway.
-Avoid changing routes by just visiting a webgui page.
-Avoid change some unneeded events when nothing changed.
Diffstat (limited to 'src/etc/inc/services.inc')
-rw-r--r-- | src/etc/inc/services.inc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/etc/inc/services.inc b/src/etc/inc/services.inc index 0b50a08..6068d71 100644 --- a/src/etc/inc/services.inc +++ b/src/etc/inc/services.inc @@ -1916,7 +1916,7 @@ function services_dyndns_configure($int = "") { } $dyndnscfg = $config['dyndnses']['dyndns']; - $gwgroups = return_gateway_groups_array(); + $gwgroups = return_gateway_groups_array(true); if (is_array($dyndnscfg)) { if (platform_booting()) { echo gettext("Starting DynDNS clients..."); @@ -2486,7 +2486,7 @@ function services_dnsupdate_process($int = "", $updatehost = "", $forced = false } $notify_text = ""; - $gwgroups = return_gateway_groups_array(); + $gwgroups = return_gateway_groups_array(true); foreach ($config['dnsupdates']['dnsupdate'] as $i => $dnsupdate) { if (!isset($dnsupdate['enable'])) { continue; |