1# this cron should be run daily by user postgres for fossology database
2#
3# Copyright (C) 2007 Hewlett-Packard Development Company, L.P.
4
5#
6# cluster
7#0 0 * * * if [ -x /usr/bin/clusterdb ]; then /usr/bin/clusterdb --username postgres fossology >/dev/null; fi
8#
9# Run VACUUM ANALYSE on all databases every 5 hours if pg_autovacuum is not
10# running
11#0 3 * * * if [ -x /usr/sbin/pg_maintenance ]; then /usr/sbin/pg_maintenance --full --analyze >/dev/null; fi
12
13