457792f9313498e90b2b2b240cfbe4ab52e93cba
[weathermon.git] / bin / dump-yesterday
1 #!/bin/sh
2
3 yesterday=`echo "print(os.date(\"%Y-%m-%d\",os.time()-24*60*60))" | /usr/bin/lua`
4
5 logdb=`uci get weathermon.process.logdb`
6
7 dumpdir=`uci get weathermon.process.archive_dir`/`echo "print(os.date(\"%Y/%m/%d\",os.time()-22*60*60))" | /usr/bin/lua`
8
9 mkdir -p $dumpdir
10
11 /usr/bin/weather-filter $logdb dump-compacted $yesterday $dumpdir
12
13 sqlite3 $logdb "delete from log where time_stamp<date('now','-1 day')"