2008-06-14 15:14:15 +00:00
|
|
|
#!/bin/sh /etc/rc.common
|
2008-06-14 15:24:44 +00:00
|
|
|
|
|
|
|
START=05
|
2008-06-14 15:14:15 +00:00
|
|
|
|
|
|
|
start() {
|
2008-08-06 20:20:40 +00:00
|
|
|
cat <<' EOF' | lua -l luci.fs -l luci.util -
|
2008-06-14 15:14:15 +00:00
|
|
|
if (os.time() < 1000000000) then
|
2008-08-06 20:20:40 +00:00
|
|
|
os.execute('date -s ' .. os.date('%m%d%H%M%Y', luci.fs.mtime(luci.util.libpath())))
|
2008-06-14 15:14:15 +00:00
|
|
|
end
|
|
|
|
EOF
|
|
|
|
}
|