Diff for /doc/loncapafiles/ntpcheck.piml between versions 1.34 and 1.35

version 1.34, 2019/02/09 16:55:14 version 1.35, 2019/05/27 00:24:30
Line 36  http://www.lon-capa.org/ Line 36  http://www.lon-capa.org/
 <target dist="default"></target>  <target dist="default"></target>
 <perlscript mode="fg">  <perlscript mode="fg">
 print "Checking to be sure the Network Time Protocol is running properly.\n";  print "Checking to be sure the Network Time Protocol is running properly.\n";
 print "For more information on ntpd please see http://www.ntp.org/\n";  if ('<DIST />' eq 'sles15') {
       print "For more information on chronyd please see https://chrony.tuxfamily.org/\n";
   } else {
       print "For more information on ntpd please see http://www.ntp.org/\n";
   }
 my $NTPD;  my $NTPD;
 my $name = 'ntp';  my $name = 'ntp';
 my $checkcmd = 'ps -ef |grep ntp |grep -v grep |grep -v ntpcheck';  my $checkcmd = 'ps -ef |grep ntp |grep -v grep |grep -v ntpcheck';
Line 49  if (('<DIST />' eq 'fedora15')    || ('< Line 53  if (('<DIST />' eq 'fedora15')    || ('<
     ('<DIST />' eq 'fedora23')    || ('<DIST />' eq 'fedora24') ||      ('<DIST />' eq 'fedora23')    || ('<DIST />' eq 'fedora24') ||
     ('<DIST />' eq 'fedora25')    || ('<DIST />' eq 'fedora26') ||      ('<DIST />' eq 'fedora25')    || ('<DIST />' eq 'fedora26') ||
     ('<DIST />' eq 'fedora27')    || ('<DIST />' eq 'fedora28') ||      ('<DIST />' eq 'fedora27')    || ('<DIST />' eq 'fedora28') ||
       ('<DIST />' eq 'fedora29')    || ('<DIST />' eq 'fedora30') ||
     ('<DIST />' eq 'centos7')     || ('<DIST />' eq 'rhes7')    ||      ('<DIST />' eq 'centos7')     || ('<DIST />' eq 'rhes7')    ||
     ('<DIST />' eq 'scientific7') || ('<DIST />' eq 'sles12')   ||      ('<DIST />' eq 'scientific7') || ('<DIST />' eq 'sles12')   ||
     ('<DIST />' eq 'sles15')      || ('<DIST />' eq 'ubuntu18')) {      ('<DIST />' eq 'sles15')      || ('<DIST />' eq 'ubuntu18')) {
     $NTPD = 'ntpd';      $NTPD = 'ntpd';
     if ('<DIST />' eq 'ubuntu18') {      if ('<DIST />' eq 'ubuntu18') {
         $NTPD = 'ntp';           $NTPD = 'ntp';
     } elsif ('<DIST />' eq 'sles15') {      } elsif ('<DIST />' eq 'sles15') {
         $NTPD = 'chronyd';          $NTPD = 'chronyd';
         $name = $NTPD;          $name = $NTPD;
Line 104  if (('<DIST />' eq 'fedora15')    || ('< Line 109  if (('<DIST />' eq 'fedora15')    || ('<
     ('<DIST />' eq 'fedora23')    || ('<DIST />' eq 'fedora24') ||      ('<DIST />' eq 'fedora23')    || ('<DIST />' eq 'fedora24') ||
     ('<DIST />' eq 'fedora25')    || ('<DIST />' eq 'fedora26') ||      ('<DIST />' eq 'fedora25')    || ('<DIST />' eq 'fedora26') ||
     ('<DIST />' eq 'fedora27')    || ('<DIST />' eq 'fedora28') ||      ('<DIST />' eq 'fedora27')    || ('<DIST />' eq 'fedora28') ||
       ('<DIST />' eq 'fedora29')    || ('<DIST />' eq 'fedora30') ||
     ('<DIST />' eq 'centos7')     || ('<DIST />' eq 'rhes7')    ||      ('<DIST />' eq 'centos7')     || ('<DIST />' eq 'rhes7')    ||
     ('<DIST />' eq 'scientific7') || ('<DIST />' eq 'sles12')   ||      ('<DIST />' eq 'scientific7') || ('<DIST />' eq 'sles12')   ||
     ('<DIST />' eq 'sles15')      || ('<DIST />' eq 'ubuntu18')) {      ('<DIST />' eq 'sles15')      || ('<DIST />' eq 'ubuntu18')) {

Removed from v.1.34  
changed lines
  Added in v.1.35


FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>