Load dyndns.class when needed only.
This commit is contained in:
Scott Ullrich 2005-10-25 21:32:56 +00:00
parent 1331005d4f
commit 482b5d349d

View File

@ -31,7 +31,6 @@
/* include all configuration functions */
require_once("functions.inc");
require_once("dyndns.class");
function services_dhcpd_configure() {
global $config, $g;
@ -411,6 +410,9 @@ function services_dyndns_configure() {
return;
}
}
/* load up the dyndns.class */
require_once("dyndns.class");
$dns = new updatedns($dnsService = $config['dyndns']['type'],
$dnsHost = $config['dyndns']['host'],
@ -1118,4 +1120,4 @@ EOD;
mwexec_bg("/usr/local/sbin/olsrd -f {$g['varetc_path']}/{$interface}_olsr.conf");
}
?>
?>