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

version 1.41, 2019/10/28 16:34:48 version 1.42, 2019/12/03 04:55:10
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 '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 67  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';
           $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') ||
Line 76  if (('<DIST />' eq 'fedora15')    || ('< Line 79  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";
     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.41  
changed lines
  Added in v.1.42


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