Thanks Driven Life

日々是感謝

起動時に毎回 ntpdate

ntpdate とかで時刻あわせても、
起動時に「Sat Aug 8 08:08:00 JST 2009」に戻る。
そういえばと思って

 # cat /etc/rc.local
#!/bin/sh -e
#
# rc.local
#
# This script is executed at the end of each multiuser runlevel.
# Make sure that the script will "" on success or any other
# value on error.
#
# In order to enable or disable this script just change the execution
# bits.
#
# By default this script does nothing.



mount -a
date 080808082009
mkdir -p /var/cache/apt/archives/partial

/root/init_setup.sh

となっていた。
前に直したつもりだったけど気のせいだったので

--- rc.local.orig       2009-08-08 08:09:27.000000000 +0900
+++ rc.local    2010-10-11 09:12:44.000000000 +0900
@@ -14,7 +14,8 @@
 
 
 mount -a
-date 080808082009
+#date 080808082009
+ntpdate ntp.nict.jp
 mkdir -p /var/cache/apt/archives/partial
 
 /root/init_setup.sh

としました。
ntpd でやるのがスマートなのかな?まあいいか。