hush/examples/var_service/ntpd/ntp.script
Denys Vlasenko 4fc82e0067 examples: add example ntpd service
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
2010-01-13 22:07:34 +01:00

30 lines
569 B
Bash
Executable File

#!/bin/sh
exec 2>/dev/null
echo "`tail -n 99 "$0.log"`" >"$0.log"
exec >>"$0.log"
exec 2>&1
dt=`date '+%Y-%m-%d %H:%M:%S'`
if test x"$stratum" != x"" \
&& test x"$poll_interval" != x"" \
&& test 4 -ge "$stratum" \
&& test 128 -le "$poll_interval" \
; then
echo "$dt: $1"\
"freq_drift_ppm=$freq_drift_ppm"\
"offset=$offset"\
"stratum=$stratum"\
"poll_interval=$poll_interval,"\
"setting hardware clock"
exec hwclock --systohc
fi
echo "$dt: $1"\
"freq_drift_ppm=$freq_drift_ppm"\
"offset=$offset"\
"stratum=$stratum"\
"poll_interval=$poll_interval"\