2017-01-16 21:28:01 +00:00
|
|
|
#!/bin/sh
|
|
|
|
|
2018-01-02 14:16:48 +00:00
|
|
|
SLEEPTIME=10
|
|
|
|
|
2017-01-16 21:28:01 +00:00
|
|
|
while true
|
|
|
|
do
|
2017-01-17 22:49:20 +00:00
|
|
|
STATUS="$(/usr/sbin/ntpq -c 'rv 0 stratum'|awk -F '=' '{ print $2 }')"
|
2017-01-16 21:28:01 +00:00
|
|
|
|
2018-01-02 14:16:48 +00:00
|
|
|
if [[ -n "$STATUS" && "$STATUS" -lt "16" ]]
|
2017-01-16 21:28:01 +00:00
|
|
|
then
|
|
|
|
ACTION="stratum" /sbin/hotplug-call ntp
|
2018-01-02 14:16:48 +00:00
|
|
|
SLEEPTIME=660
|
2017-01-16 21:28:01 +00:00
|
|
|
fi
|
2018-01-02 14:16:48 +00:00
|
|
|
sleep $SLEEPTIME
|
2017-01-16 21:28:01 +00:00
|
|
|
done
|