Diff for /doc/loncapafiles/ntpcheck.piml between versions 1.40 and 1.51

version 1.40, 2019/10/28 16:31:06 version 1.51, 2021/12/21 13:57:46
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 'fedora32') || ('<DIST />' eq 'fedora33') ||
       ('<DIST />' eq 'fedora34') || ('<DIST />' eq 'fedora35') ||  
       ('<DIST />' eq 'sles15')   || ('<DIST />' eq 'centos8')  ||
       ('<DIST />' eq 'rhes8')    || ('<DIST />' eq 'oracle7')  ||
       ('<DIST />' eq 'oracle8')  || ('<DIST />' eq 'ubuntu18') ||
       ('<DIST />' eq 'ubuntu20') || ('<DIST />' eq 'rocky8')   ||
       ('<DIST />' eq 'alma8')    || ('<DIST />' eq 'centos8-stream') ||
       ('<DIST />' eq 'centos9-stream')) {
     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";
Line 56  if (('<DIST />' eq 'fedora15')    || ('< Line 64  if (('<DIST />' eq 'fedora15')    || ('<
     ('<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 'fedora29')    || ('<DIST />' eq 'fedora30') ||
     ('<DIST />' eq 'fedora31')    || ('<DIST />' eq 'centos7')  ||      ('<DIST />' eq 'fedora31')    || ('<DIST />' eq 'fedora32') ||
       ('<DIST />' eq 'fedora33')    || ('<DIST />' eq 'fedora34') ||
       ('<DIST />' eq 'fedora35')    || ('<DIST />' eq 'centos7')  ||
     ('<DIST />' eq 'rhes7')       || ('<DIST />' eq 'oracle7')  ||      ('<DIST />' eq 'rhes7')       || ('<DIST />' eq 'oracle7')  ||
     ('<DIST />' eq 'scientific7') || ('<DIST />' eq 'sles12')   ||      ('<DIST />' eq 'scientific7') || ('<DIST />' eq 'sles12')   ||
     ('<DIST />' eq 'sles15')      || ('<DIST />' eq 'ubuntu18') ||      ('<DIST />' eq 'sles15')      || ('<DIST />' eq 'ubuntu18') || 
     ('<DIST />' eq 'rhes8')       || ('<DIST />' eq 'centos8')  ||      ('<DIST />' eq 'ubuntu20')    || ('<DIST />' eq 'rhes8')    || 
     ('<DIST />' eq 'oracle8')) {      ('<DIST />' eq 'centos8')     || ('<DIST />' eq 'oracle8')  ||
       ('<DIST />' eq 'rocky8')      || ('<DIST />' eq 'alma8')    ||
       ('<DIST />' eq 'centos8-stream') || ('<DIST />' eq 'centos9-stream')) {
     $NTPD = 'ntpd';      $NTPD = 'ntpd';
     if ('<DIST />' eq 'ubuntu18') {      my $binname = $NTPD;
         $NTPD = 'ntp';      if (('<DIST />' eq 'ubuntu18') || ('<DIST />' eq 'ubuntu20')) {
           $NTPD = 'chrony';
           $name = $NTPD;
           $binname = 'chronyd';  
     } elsif (('<DIST />' eq 'fedora26') || ('<DIST />' eq 'fedora27') ||      } elsif (('<DIST />' eq 'fedora26') || ('<DIST />' eq 'fedora27') ||
              ('<DIST />' eq 'fedora28') || ('<DIST />' eq 'fedora29') ||               ('<DIST />' eq 'fedora28') || ('<DIST />' eq 'fedora29') ||
              ('<DIST />' eq 'fedora30') || ('<DIST />' eq 'fedora31') ||               ('<DIST />' eq 'fedora30') || ('<DIST />' eq 'fedora31') ||
                ('<DIST />' eq 'fedora32') || ('<DIST />' eq 'fedora33') ||
                ('<DIST />' eq 'fedora34') || ('<DIST />' eq 'fedora35') ||
              ('<DIST />' eq 'sles15')   || ('<DIST />' eq 'rhes8')    ||                ('<DIST />' eq 'sles15')   || ('<DIST />' eq 'rhes8')    || 
              ('<DIST />' eq 'centos8')  || ('<DIST />' eq 'oracle7')  ||               ('<DIST />' eq 'centos8')  || ('<DIST />' eq 'oracle7')  ||
              ('<DIST />' eq 'oracle8')) {               ('<DIST />' eq 'oracle8')  || ('<DIST />' eq 'rocky8')   ||
                ('<DIST />' eq 'alma8')    || ('<DIST />' eq 'centos8-stream') ||
                ('<DIST />' eq 'centos9-stream')) {
         $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;
     }      }
Line 120  if (('<DIST />' eq 'fedora15')    || ('< Line 140  if (('<DIST />' eq 'fedora15')    || ('<
     ('<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 'fedora29')    || ('<DIST />' eq 'fedora30') ||
     ('<DIST />' eq 'fedora31')    || ('<DIST />' eq 'centos7')  ||       ('<DIST />' eq 'fedora31')    || ('<DIST />' eq 'fedora32') ||
     ('<DIST />' eq 'rhes7')       || ('<DIST />' eq 'oracle7')  ||      ('<DIST />' eq 'fedora33')    || ('<DIST />' eq 'fedora34') ||
     ('<DIST />' eq 'scientific7') || ('<DIST />' eq 'sles12')   ||      ('<DIST />' eq 'fedora35')    || ('<DIST />' eq 'centos7')  ||
       ('<DIST />' eq 'scientific7') || ('<DIST />' eq 'rhes7')    || 
       ('<DIST />' eq 'oracle7')     || ('<DIST />' eq 'sles12')   ||
     ('<DIST />' eq 'sles15')      || ('<DIST />' eq 'ubuntu18') ||      ('<DIST />' eq 'sles15')      || ('<DIST />' eq 'ubuntu18') ||
     ('<DIST />' eq 'rhes8')       || ('<DIST />' eq 'centos8')  ||      ('<DIST />' eq 'ubuntu20')    || ('<DIST />' eq 'rhes8')    ||
     ('<DIST />' eq 'oracle8')) {      ('<DIST />' eq 'centos8')     || ('<DIST />' eq 'oracle8')  ||
       ('<DIST />' eq 'rocky8')      || ('<DIST />' eq 'alma8')    ||
       ('<DIST />' eq 'centos8-stream') || ('<DIST />' eq 'centos9-stream')) { 
     if (!-l "/etc/systemd/system/multi-user.target.wants/$NTPD.service") {        if (!-l "/etc/systemd/system/multi-user.target.wants/$NTPD.service") {  
         print "**** WARNING: $NTPD is not configured to run at boot.  To correct this run:\nsystemctl enable $NTPD.service\n";          print "**** WARNING: $NTPD is not configured to run at boot.  To correct this run:\nsystemctl enable $NTPD.service\n";
     }      }

Removed from v.1.40  
changed lines
  Added in v.1.51


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