/var/lib/otrs/cron/cache.dist is in otrs2 3.3.5-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 | # --
# cron/cache - delete expired cache
# Copyright (C) 2001-2010 OTRS AG, http://otrs.org/
# --
# This software comes with ABSOLUTELY NO WARRANTY. For details, see
# the enclosed file COPYING for license information (AGPL). If you
# did not receive this file, see http://www.gnu.org/licenses/agpl.txt.
# --
# delete expired cache weekly (Sunday mornings)
20 0 * * 0 otrs test -x $HOME/bin/otrs.DeleteCache.pl && $HOME/bin/otrs.DeleteCache.pl --expired > /dev/null
30 0 * * 0 otrs test -x $HOME/bin/otrs.LoaderCache.pl && $HOME/bin/otrs.LoaderCache.pl -o delete > /dev/null
|