Commit 909c271d authored by Franco Fichtner's avatar Franco Fichtner

ntp: disable when no servers are set; closes #332

This will make a few good people very happy.  :)

(cherry picked from commit 0d70b4a9)
parent db4e204d
...@@ -2544,13 +2544,15 @@ function services_get() ...@@ -2544,13 +2544,15 @@ function services_get()
$services[] = $pconfig; $services[] = $pconfig;
} }
$pconfig = array(); if (isset($config['system']['timeservers'])) {
$pconfig['name'] = "ntpd"; $pconfig = array();
$pconfig['description'] = gettext("NTP clock sync"); $pconfig['name'] = "ntpd";
$pconfig['php']['restart'] = array('system_ntp_configure'); $pconfig['description'] = gettext("NTP clock sync");
$pconfig['php']['start'] = array('system_ntp_configure'); $pconfig['php']['restart'] = array('system_ntp_configure');
$pconfig['pidfile'] = '/var/run/ntpd.pid'; $pconfig['php']['start'] = array('system_ntp_configure');
$services[] = $pconfig; $pconfig['pidfile'] = '/var/run/ntpd.pid';
$services[] = $pconfig;
}
$iflist = array(); $iflist = array();
$ifdescrs = get_configured_interface_list(); $ifdescrs = get_configured_interface_list();
......
...@@ -1478,6 +1478,17 @@ function system_ntp_configure($start_ntpd = true) ...@@ -1478,6 +1478,17 @@ function system_ntp_configure($start_ntpd = true)
{ {
global $config; global $config;
/* if ntpd is running, kill it when restart is not delayed */
while ($start_ntpd && isvalidpid('/var/run/ntpd.pid')) {
killbypid('/var/run/ntpd.pid');
usleep(200 * 1000);
}
if (!isset($config['system']['timeservers'])) {
/* use this field for on/off toggle */
return;
}
$driftfile = '/var/db/ntpd.drift'; $driftfile = '/var/db/ntpd.drift';
$statsdir = '/var/log/ntp'; $statsdir = '/var/log/ntp';
$gps_device = '/dev/gps0'; $gps_device = '/dev/gps0';
...@@ -1723,12 +1734,6 @@ function system_ntp_configure($start_ntpd = true) ...@@ -1723,12 +1734,6 @@ function system_ntp_configure($start_ntpd = true)
return; return;
} }
/* if ntpd is running, kill it */
while (isvalidpid('/var/run/ntpd.pid')) {
killbypid('/var/run/ntpd.pid');
usleep(200 * 1000);
}
/* if /var/empty does not exist, create it */ /* if /var/empty does not exist, create it */
@mkdir('/var/empty', 0775, true); @mkdir('/var/empty', 0775, true);
......
...@@ -63,9 +63,10 @@ if ($_POST) { ...@@ -63,9 +63,10 @@ if ($_POST) {
if (!empty($_POST["servselect{$i}"])) $config['ntpd']['noselect'].= "{$tserver} "; if (!empty($_POST["servselect{$i}"])) $config['ntpd']['noselect'].= "{$tserver} ";
} }
} }
if (trim($timeservers) == "")
$timeservers = "pool.ntp.org";
$config['system']['timeservers'] = trim($timeservers); $config['system']['timeservers'] = trim($timeservers);
if (empty($config['system']['timeservers'])) {
unset($config['system']['timeservers']);
}
if (!empty($_POST['ntporphan']) && ($_POST['ntporphan'] < 17) && ($_POST['ntporphan'] != '12')) if (!empty($_POST['ntporphan']) && ($_POST['ntporphan'] < 17) && ($_POST['ntporphan'] != '12'))
$config['ntpd']['orphan'] = $_POST['ntporphan']; $config['ntpd']['orphan'] = $_POST['ntporphan'];
......
...@@ -156,9 +156,11 @@ if ($_SERVER['REQUEST_METHOD'] === 'GET') { ...@@ -156,9 +156,11 @@ if ($_SERVER['REQUEST_METHOD'] === 'GET') {
# it's easy to have a little too much whitespace in the field, clean it up for the user before processing. # it's easy to have a little too much whitespace in the field, clean it up for the user before processing.
$pconfig['timeservers'] = preg_replace('/[[:blank:]]+/', ' ', $pconfig['timeservers']); $pconfig['timeservers'] = preg_replace('/[[:blank:]]+/', ' ', $pconfig['timeservers']);
$pconfig['timeservers'] = trim($pconfig['timeservers']); $pconfig['timeservers'] = trim($pconfig['timeservers']);
foreach (explode(' ', $pconfig['timeservers']) as $ts) { if (!empty($pconfig['timeservers'])) {
if (!is_domain($ts)) { foreach (explode(' ', $pconfig['timeservers']) as $ts) {
$input_errors[] = gettext("A NTP Time Server name may only contain the characters a-z, 0-9, '-' and '.'."); if (!is_domain($ts)) {
$input_errors[] = gettext("A NTP Time Server name may only contain the characters a-z, 0-9, '-' and '.'.");
}
} }
} }
...@@ -167,6 +169,9 @@ if ($_SERVER['REQUEST_METHOD'] === 'GET') { ...@@ -167,6 +169,9 @@ if ($_SERVER['REQUEST_METHOD'] === 'GET') {
$config['system']['domain'] = $pconfig['domain']; $config['system']['domain'] = $pconfig['domain'];
$config['system']['timezone'] = $pconfig['timezone']; $config['system']['timezone'] = $pconfig['timezone'];
$config['system']['timeservers'] = strtolower($pconfig['timeservers']); $config['system']['timeservers'] = strtolower($pconfig['timeservers']);
if (empty($config['system']['timeservers'])) {
unset($config['system']['timeservers']);
}
$config['theme'] = $pconfig['theme']; $config['theme'] = $pconfig['theme'];
if (!empty($pconfig['language']) && $pconfig['language'] != $config['system']['language']) { if (!empty($pconfig['language']) && $pconfig['language'] != $config['system']['language']) {
...@@ -445,9 +450,9 @@ include("head.inc"); ...@@ -445,9 +450,9 @@ include("head.inc");
<td width="78%" class="vtable"> <td width="78%" class="vtable">
<input name="timeservers" type="text" class="formfld unknown" value="<?=$pconfig['timeservers'];?>" /> <input name="timeservers" type="text" class="formfld unknown" value="<?=$pconfig['timeservers'];?>" />
<div class="hidden" for="help_for_ntp"> <div class="hidden" for="help_for_ntp">
<?=gettext("Use a space to separate multiple hosts (only one " . <?=gettext("Use a space to separate multiple hosts if " .
"required). Remember to set up at least one DNS server " . "needed or leave blank to disable the network time service. " .
"if you enter a host name here!"); ?> "Remember to set up DNS if you enter host names here."); ?>
</div> </div>
</td> </td>
</tr> </tr>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment