Diff for /doc/loncapafiles/ntpcheck.piml between versions 1.37 and 1.38

version 1.37, 2019/07/02 19:40:13 version 1.38, 2019/09/20 15:01:54
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') || ('<DIST />' eq 'rhes8') || ('<DIST />' eq 'oracle7')) {  if (('<DIST />' eq 'sles15') || ('<DIST />' eq 'centos8') || 
       ('<DIST />' eq 'rhes8')  || ('<DIST />' eq 'oracle7') ||
       ('<DIST />' eq 'oracle8')) {
     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 58  if (('<DIST />' eq 'fedora15')    || ('< Line 60  if (('<DIST />' eq 'fedora15')    || ('<
     ('<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 'rhes8')       || ('<DIST />' eq 'centos8')  ||
     ('<DIST />' eq 'oracle7')) {      ('<DIST />' eq 'oracle7')     || ('<DIST />' eq 'oracle8')) {
     $NTPD = 'ntpd';      $NTPD = 'ntpd';
     if ('<DIST />' eq 'ubuntu18') {      if ('<DIST />' eq 'ubuntu18') {
         $NTPD = 'ntp';          $NTPD = 'ntp';
     } elsif (('<DIST />' eq 'sles15') || ('<DIST />' eq 'rhes8') || ('<DIST />' eq 'centos8') || ('<DIST />' eq 'oracle7')) {      } elsif (('<DIST />' eq 'sles15') || ('<DIST />' eq 'rhes8') || 
                ('<DIST />' eq 'centos8') || ('<DIST />' eq 'oracle7') ||
                ('<DIST />' eq 'oracle8')) {
         $NTPD = 'chronyd';          $NTPD = 'chronyd';
         $name = $NTPD;          $name = $NTPD;
     }      }
Line 116  if (('<DIST />' eq 'fedora15')    || ('< Line 120  if (('<DIST />' eq 'fedora15')    || ('<
     ('<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 'rhes8')       || ('<DIST />' eq 'centos8')  ||
     ('<DIST />' eq 'oracle7')) {      ('<DIST />' eq 'oracle7')     || ('<DIST />' eq 'oracle8')) {
     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.37  
changed lines
  Added in v.1.38


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