В cron.log я вижу, что ntpdate запускается из задания cron, которое выполняется ежедневно в 23:15.
10 марта 23:15:01 seitan / USR / SBIN / CRON [22407]: (root) CMD (/etc/network/if-up.d/ntpdate)
Но я не могу найти задание cron, которое заставляет эти сообщения заполнять мой системный журнал
10 марта 23:15:01 seitan ntpdate [22416]: сокет NTP используется, завершается
Я предполагаю, что мне нужно изменить это задание cron, чтобы остановить службу ntp до выполнения этой команды, а затем запустить ее снова, но я не знаю, откуда это запускается. Я проверил каталог cron.daily, и он содержит только файл ntp
который, кажется, только вращает статистику ntp (содержание ниже):
#!/bin/sh
# The default Debian ntp.conf enables logging of various statistics to
# the /var/log/ntpstats directory. The daemon automatically changes
# to a new datestamped set of files at midnight, so all we need to do
# is delete old ones, and compress the ones we're keeping so disk
# usage is controlled.
statsdir=$(cat /etc/ntp.conf | grep -v '^#' | sed -n 's/statsdir \([^ ][^ ]*\)/\1/p')
if [ -n "$statsdir" ] && [ -d "$statsdir" ]; then
# only keep a week's depth of these
find "$statsdir" -type f -mtime +7 -exec rm {} \;
# compress whatever is left to save space
cd "$statsdir"
ls *stats.???????? > /dev/null 2>&1
if [ $? -eq 0 ]; then
# Note that gzip won't compress the file names that
# are hard links to the live/current files, so this
# compresses yesterday and previous, leaving the live
# log alone. We supress the warnings gzip issues
# about not compressing the linked file.
gzip --best --quiet *stats.????????
return=$?
case $return in
2)
exit 0 # squash all warnings
;;
*)
exit $return # but let real errors through
;;
esac
fi
fi
Я ни разу не трогал ни одну конфигурацию ntp в системе.
Если у вас есть ntp
работает и настроен правильно, запускать не нужно ntpdate
вообще.
Обычно я использую его только для того, чтобы вручную установить часы во время установки.