[LON-CAPA-cvs] cvs: doc /loncapafiles ntpcheck.piml
raeburn
raeburn at source.lon-capa.org
Sun May 26 21:56:29 EDT 2019
raeburn Mon May 27 01:56:29 2019 EDT
Modified files:
/doc/loncapafiles ntpcheck.piml
Log:
- Support RHEL 8 (and CentOS 8, once released).
Index: doc/loncapafiles/ntpcheck.piml
diff -u doc/loncapafiles/ntpcheck.piml:1.35 doc/loncapafiles/ntpcheck.piml:1.36
--- doc/loncapafiles/ntpcheck.piml:1.35 Mon May 27 00:24:30 2019
+++ doc/loncapafiles/ntpcheck.piml Mon May 27 01:56:28 2019
@@ -3,7 +3,7 @@
<!-- ntpcheck.piml -->
<!-- Matthew Hall -->
-<!-- $Id: ntpcheck.piml,v 1.35 2019/05/27 00:24:30 raeburn Exp $ -->
+<!-- $Id: ntpcheck.piml,v 1.36 2019/05/27 01:56:28 raeburn Exp $ -->
<!--
@@ -36,7 +36,7 @@
<target dist="default"></target>
<perlscript mode="fg">
print "Checking to be sure the Network Time Protocol is running properly.\n";
-if ('<DIST />' eq 'sles15') {
+if (('<DIST />' eq 'sles15') || ('<DIST />' eq 'centos8') || ('<DIST />' eq 'rhes8')) {
print "For more information on chronyd please see https://chrony.tuxfamily.org/\n";
} else {
print "For more information on ntpd please see http://www.ntp.org/\n";
@@ -56,11 +56,12 @@
('<DIST />' eq 'fedora29') || ('<DIST />' eq 'fedora30') ||
('<DIST />' eq 'centos7') || ('<DIST />' eq 'rhes7') ||
('<DIST />' eq 'scientific7') || ('<DIST />' eq 'sles12') ||
- ('<DIST />' eq 'sles15') || ('<DIST />' eq 'ubuntu18')) {
+ ('<DIST />' eq 'sles15') || ('<DIST />' eq 'ubuntu18') ||
+ ('<DIST />' eq 'rhes8') || ('<DIST />' eq 'centos8')) {
$NTPD = 'ntpd';
if ('<DIST />' eq 'ubuntu18') {
$NTPD = 'ntp';
- } elsif ('<DIST />' eq 'sles15') {
+ } elsif (('<DIST />' eq 'sles15') || ('<DIST />' eq 'rhes8') || ('<DIST />' eq 'centos8')) {
$NTPD = 'chronyd';
$name = $NTPD;
}
@@ -112,7 +113,8 @@
('<DIST />' eq 'fedora29') || ('<DIST />' eq 'fedora30') ||
('<DIST />' eq 'centos7') || ('<DIST />' eq 'rhes7') ||
('<DIST />' eq 'scientific7') || ('<DIST />' eq 'sles12') ||
- ('<DIST />' eq 'sles15') || ('<DIST />' eq 'ubuntu18')) {
+ ('<DIST />' eq 'sles15') || ('<DIST />' eq 'ubuntu18') ||
+ ('<DIST />' eq 'rhes8') || ('<DIST />' eq 'centos8')) {
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";
}
More information about the LON-CAPA-cvs
mailing list