Diff for /doc/loncapafiles/ntpcheck.piml between versions 1.39 and 1.42

version 1.39, 2019/10/28 16:24:23 version 1.42, 2019/12/03 04:55:10
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";
 if (('<DIST />' eq 'sles15') || ('<DIST />' eq 'centos8') ||   if (('<DIST />' eq 'fedora26') || ('<DIST />' eq 'fedora27') ||
     ('<DIST />' eq 'rhes8')  || ('<DIST />' eq 'oracle7') ||      ('<DIST />' eq 'fedora28') || ('<DIST />' eq 'fedora29') ||
     ('<DIST />' eq 'oracle8')) {      ('<DIST />' eq 'fedora30') || ('<DIST />' eq 'fedora31') ||
       ('<DIST />' eq 'sles15')   || ('<DIST />' eq 'centos8')  || 
       ('<DIST />' eq 'rhes8')    || ('<DIST />' eq 'oracle7')  ||
       ('<DIST />' eq 'oracle8')  || ('<DIST />' eq 'ubuntu18')) {
     print "For more information on chronyd please see https://chrony.tuxfamily.org/\n";      print "For more information on chronyd please see https://chrony.tuxfamily.org/\n";
 } else {  } else {
     print "For more information on ntpd please see http://www.ntp.org/\n";      print "For more information on ntpd please see http://www.ntp.org/\n";
 }  }
 my $NTPD;  my $NTPD;
 my $name = 'ntp';  my $name = 'ntp';
   my $binname = $name;
 my $checkcmd = 'ps -ef |grep ntp |grep -v grep |grep -v ntpcheck';  my $checkcmd = 'ps -ef |grep ntp |grep -v grep |grep -v ntpcheck';
 my $startntpcmd;  my $startntpcmd;
 my $is_running;  my $is_running;
Line 64  if (('<DIST />' eq 'fedora15')    || ('< Line 68  if (('<DIST />' eq 'fedora15')    || ('<
     ('<DIST />' eq 'oracle8')) {      ('<DIST />' eq 'oracle8')) {
     $NTPD = 'ntpd';      $NTPD = 'ntpd';
     if ('<DIST />' eq 'ubuntu18') {      if ('<DIST />' eq 'ubuntu18') {
         $NTPD = 'ntp';          $NTPD = 'chrony';
     } elsif (('<DIST />' eq 'sles15')  || ('<DIST />' eq 'rhes8')   ||           $name = $NTPD;
              ('<DIST />' eq 'centos8') || ('<DIST />' eq 'oracle7') ||          $binname = 'chronyd';  
              ('<DIST />' eq 'oracle8') || ('<DIST />' eq 'fedora31')) {      } elsif (('<DIST />' eq 'fedora26') || ('<DIST />' eq 'fedora27') ||
                ('<DIST />' eq 'fedora28') || ('<DIST />' eq 'fedora29') ||
                ('<DIST />' eq 'fedora30') || ('<DIST />' eq 'fedora31') ||
                ('<DIST />' eq 'sles15')   || ('<DIST />' eq 'rhes8')    || 
                ('<DIST />' eq 'centos8')  || ('<DIST />' eq 'oracle7')  ||
                ('<DIST />' eq 'oracle8')) {
         $NTPD = 'chronyd';          $NTPD = 'chronyd';
         $name = $NTPD;          $name = $NTPD;
           $binname = $NTPD;
     }      }
     $checkcmd = "systemctl is-enabled $NTPD.service";      $checkcmd = "systemctl is-enabled $NTPD.service";
     $startntpcmd = "systemctl start $NTPD.service";      $startntpcmd = "systemctl start $NTPD.service";
     if (!-e "/usr/sbin/$NTPD") {      if (!-e "/usr/sbin/$binname") {
         print "$name is not installed.\n";          print "$name is not installed.\n";
         exit;          exit;
     }      }

Removed from v.1.39  
changed lines
  Added in v.1.42


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