You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
294 B
13 lines
294 B
#!/bin/sh
|
|
# Author: Athmane Madjoudj <athmanem@gmail.com>
|
|
# Ref.: http://bugs.centos.org/view.php?id=4943
|
|
|
|
if [ "$centos_ver" -ge 8 ] ; then
|
|
exit 0
|
|
fi
|
|
t_Log "Running $0 - NTP is using CentOS server pool test."
|
|
|
|
grep ".centos.pool.ntp.org" /etc/ntp.conf > /dev/null 2>&1
|
|
|
|
t_CheckExitStatus $?
|