Diff for /doc/loncapafiles/ntpcheck.piml between versions 1.12 and 1.34

version 1.12, 2011/05/31 11:27:24 version 1.34, 2019/02/09 16:55:14
Line 38  http://www.lon-capa.org/ Line 38  http://www.lon-capa.org/
 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";
 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;
 if (-e "/etc/init.d/ntpd") {  my $name = 'ntp';
    $NTPD = "ntpd";  my $checkcmd = 'ps -ef |grep ntp |grep -v grep |grep -v ntpcheck';
 } elsif (-e "/etc/init.d/xntpd") {  my $startntpcmd;
    $NTPD = "xntpd";  my $is_running;
 } elsif (-e "/etc/init.d/ntp") {  if (('<DIST />' eq 'fedora15')    || ('<DIST />' eq 'fedora16') ||
    $NTPD = "ntp";       ('<DIST />' eq 'fedora17')    || ('<DIST />' eq 'fedora18') ||
       ('<DIST />' eq 'fedora19')    || ('<DIST />' eq 'fedora20') ||
       ('<DIST />' eq 'fedora21')    || ('<DIST />' eq 'fedora22') ||
       ('<DIST />' eq 'fedora23')    || ('<DIST />' eq 'fedora24') ||
       ('<DIST />' eq 'fedora25')    || ('<DIST />' eq 'fedora26') ||
       ('<DIST />' eq 'fedora27')    || ('<DIST />' eq 'fedora28') ||
       ('<DIST />' eq 'centos7')     || ('<DIST />' eq 'rhes7')    ||
       ('<DIST />' eq 'scientific7') || ('<DIST />' eq 'sles12')   ||
       ('<DIST />' eq 'sles15')      || ('<DIST />' eq 'ubuntu18')) {
       $NTPD = 'ntpd';
       if ('<DIST />' eq 'ubuntu18') {
           $NTPD = 'ntp'; 
       } elsif ('<DIST />' eq 'sles15') {
           $NTPD = 'chronyd';
           $name = $NTPD;
       }
       $checkcmd = "systemctl is-enabled $NTPD.service";
       $startntpcmd = "systemctl start $NTPD.service";
       if (!-e "/usr/sbin/$NTPD") {
           print "$name is not installed.\n";
           exit;
       }
 } else {  } else {
     print "ntp is not installed.\n";      if (-e "/etc/init.d/ntpd") {
     exit;          $NTPD = "ntpd";
 }      } elsif (-e "/etc/init.d/xntpd") {
 my $value = `/etc/init.d/$NTPD status`;          $NTPD = "xntpd";
 if ($value !~ /running/) {      } elsif (-e "/etc/init.d/ntp") {
     print "WARNING: ntp is installed but is not currently running.\nPlease verify the configuration of ntp in /etc/ntp.conf and /etc/ntp/step-tickers\nStart ntp by executing\n /etc/init.d/$NTPD start\n";          $NTPD = "ntp"; 
       } else {
           print "ntp is not installed.\n";
           exit;
       }
       $startntpcmd = "/etc/init.d/$NTPD start";
 }  }
 # chkconfig barfs to stderr if the target isn't set up right.  
 my $checking_bin;  if (open(PIPE,'-|',$checkcmd)) {
 my $restartchk;      $is_running = &lt;PIPE&gt;;
 if ('<DIST />' eq 'debian5' || '<DIST />' eq 'debian6' || '<DIST />' eq 'ubuntu6' || '<DIST />' eq 'ubuntu8' || '<DIST />' eq 'ubuntu10') {      chomp($is_running);
     $checking_bin = '/usr/sbin/sysv-rc-conf';      close(PIPE);
       if (!$is_running) {
           print "WARNING: $name is installed but is not currently running.\n";
           if ($name eq 'ntp') {
               print "Please verify the configuration of ntp in /etc/ntp.conf and /etc/ntp/step-tickers\n";
           }
           print "Start $name by executing\n $startntpcmd\n";
       } else {
           print "$name is installed and running\n";
       }
 } else {  } else {
     $checking_bin = '/sbin/chkconfig';      print "Could not determine $name status.\n";
 }  }
 if ('<DIST />' eq 'fedora15') {  
     if (!-l "/etc/systemd/system/multi-user.target.wants/ntpd.service") {    # chkconfig barfs to stderr if the target isn't set up right.
         print "**** WARNING: ntpd is not configured to run at boot.  To correct this run:\nsystemctl enable ntpd.service\n";  if (('<DIST />' eq 'fedora15')    || ('<DIST />' eq 'fedora16') ||
       ('<DIST />' eq 'fedora17')    || ('<DIST />' eq 'fedora18') ||
       ('<DIST />' eq 'fedora19')    || ('<DIST />' eq 'fedora20') ||
       ('<DIST />' eq 'fedora21')    || ('<DIST />' eq 'fedora22') ||
       ('<DIST />' eq 'fedora23')    || ('<DIST />' eq 'fedora24') ||
       ('<DIST />' eq 'fedora25')    || ('<DIST />' eq 'fedora26') ||
       ('<DIST />' eq 'fedora27')    || ('<DIST />' eq 'fedora28') ||
       ('<DIST />' eq 'centos7')     || ('<DIST />' eq 'rhes7')    ||
       ('<DIST />' eq 'scientific7') || ('<DIST />' eq 'sles12')   ||
       ('<DIST />' eq 'sles15')      || ('<DIST />' eq 'ubuntu18')) {
       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";
     }      }
     exit;      exit;
 } else {  } else {
       my $checking_bin;
       my $restartchk;
       if (('<DIST />' eq 'debian5') || ('<DIST />' eq 'debian6') || ('<DIST />' eq 'ubuntu6') || 
           ('<DIST />' eq 'ubuntu8') || ('<DIST />' eq 'ubuntu10') || ('<DIST />' eq 'ubuntu12') || 
           ('<DIST />' eq 'ubuntu14') || ('<DIST />' eq 'ubuntu16')) {
           $checking_bin = '/usr/sbin/sysv-rc-conf';
       } else {
           $checking_bin = '/sbin/chkconfig';
       }
     $restartchk = `$checking_bin --list $NTPD 2>/dev/null`;      $restartchk = `$checking_bin --list $NTPD 2>/dev/null`;
     if ($restartchk eq '') {      if ($restartchk eq '') {
         print "**** WARNING: ntpd is either not installed or not configured to run at boot.\n";          print "**** WARNING: ntpd is either not installed or not configured to run at boot.\n";

Removed from v.1.12  
changed lines
  Added in v.1.34


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