h4ck/lg_webOS/base-files/ipk/etc/init.d/sysfixtime
2016-11-18 15:49:40 -08:00

12 lines
247 B
Bash
Executable File

#!/bin/sh /etc/rc.common
# Copyright (C) 2013-2014 OpenWrt.org
START=00
boot() {
local curtime="$(date +%s)"
local maxtime="$(find /etc -type f -exec date -r {} +%s \; | sort -nr | head -n1)"
[ $curtime -lt $maxtime ] && date -s @$maxtime
}