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

version 1.42, 2019/12/03 04:55:10 version 1.44, 2020/01/18 20:42:08
Line 41  if (('<DIST />' eq 'fedora26') || ('<DIS Line 41  if (('<DIST />' eq 'fedora26') || ('<DIS
     ('<DIST />' eq 'fedora30') || ('<DIST />' eq 'fedora31') ||      ('<DIST />' eq 'fedora30') || ('<DIST />' eq 'fedora31') ||
     ('<DIST />' eq 'sles15')   || ('<DIST />' eq 'centos8')  ||       ('<DIST />' eq 'sles15')   || ('<DIST />' eq 'centos8')  || 
     ('<DIST />' eq 'rhes8')    || ('<DIST />' eq 'oracle7')  ||      ('<DIST />' eq 'rhes8')    || ('<DIST />' eq 'oracle7')  ||
     ('<DIST />' eq 'oracle8')  || ('<DIST />' eq 'ubuntu18')) {      ('<DIST />' eq 'oracle8')  || ('<DIST />' eq 'ubuntu18') ||
       ('<DIST />' eq 'ubuntu20')) {
     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 64  if (('<DIST />' eq 'fedora15')    || ('< Line 65  if (('<DIST />' eq 'fedora15')    || ('<
     ('<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')) { 
     $NTPD = 'ntpd';      $NTPD = 'ntpd';
     if ('<DIST />' eq 'ubuntu18') {      $binname = $NTPD;
       if (('<DIST />' eq 'ubuntu18') || ('<DIST />' eq 'ubuntu20')) {
         $NTPD = 'chrony';          $NTPD = 'chrony';
         $name = $NTPD;          $name = $NTPD;
         $binname = 'chronyd';            $binname = 'chronyd';  
Line 79  if (('<DIST />' eq 'fedora15')    || ('< Line 81  if (('<DIST />' eq 'fedora15')    || ('<
              ('<DIST />' eq 'oracle8')) {               ('<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";
Line 131  if (('<DIST />' eq 'fedora15')    || ('< Line 132  if (('<DIST />' eq 'fedora15')    || ('<
     ('<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')) {
     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.42  
changed lines
  Added in v.1.44


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