summaryrefslogtreecommitdiffhomepage
path: root/contrib/package/luci-addons/dist/etc/init.d/luci_fixtime
blob: 681d9d7898bc33a8c2d2a20c1c5e8dc3937814d2 (plain)
1
2
3
4
5
6
7
8
9
10
11
#!/bin/sh /etc/rc.common

START=05

start() {
	cat <<'	EOF' | lua -l luci.fs -l luci.util -
		if (os.time() < 1000000000) then
        		os.execute('date -s ' .. os.date('%m%d%H%M%Y', luci.fs.mtime(luci.util.libpath())))
		end
	EOF
}