5
0
Fork 0
mirror of https://0xacab.org/sutty/sutty synced 2024-05-03 22:47:04 +00:00
panel/bin/access_logs
2022-04-27 13:57:33 -03:00

16 lines
405 B
Bash
Executable file

#!/bin/sh
set -e
# Volcar y eliminar todos los access logs de dos días atrás
date="`dateadd today -1d`"
file="/srv/http/_storage/${date}.psql.gz"
test -n "${date}"
test ! -f "${file}"
psql -h postgresql "${DATABASE:-sutty}" sutty <<SQL | gzip > "${file}"
begin;
copy (select * from access_logs where created_at < '${date}') to stdout;
delete from access_logs where created_at < '${date}';
commit;
SQL