5
0
Fork 0
mirror of https://0xacab.org/sutty/sutty synced 2024-06-30 09:36:08 +00:00
panel/bin/access_logs

13 lines
339 B
Plaintext
Raw Normal View History

#!/bin/sh
set -e
# Volcar y eliminar todos los access logs del día anterior
date=`date +%F`
psql -h postgresql "${DATABASE:-sutty}" sutty <<SQL | gzip > "/srv/http/_storage/${date}.psql.gz"
begin;
copy (select * from access_logs where created_at < '${date}') to stdout;
delete from access_logs where created_at < '${date}';
commit;
SQL