base-files: removes logging
authorJohn Crispin <john@openwrt.org>
Mon, 2 Jun 2014 12:42:37 +0000 (12:42 +0000)
committerJohn Crispin <john@openwrt.org>
Mon, 2 Jun 2014 12:42:37 +0000 (12:42 +0000)
Since logd haven't started at this point, logging does not work.

Signed-off-by: Nuno Goncalves <nunojpg@gmail.com>
SVN-Revision: 40904

package/base-files/files/etc/init.d/sysfixtime

index 525d765758d06c3e1cb75e9866a008781bc2f467..ca19e78e025bd389935fbbf8f5f1c58a5085d79c 100755 (executable)
@@ -6,8 +6,6 @@ START=00
 boot() {
        local curtime="$(date +%s)"
        local maxtime="$(find /etc -type f -exec date +%s -r {} \; | sort -nr | head -n1)"
-       [ $curtime -lt $maxtime ] && \
-               date -s @$maxtime && \
-               logger -t sysfixtime -p daemon.notice "Time fixed"
+       [ $curtime -lt $maxtime ] && date -s @$maxtime
 }