Reduce htcachclean limit on our mirrors

We previously set the limit to 70200M on a ~98GB filesystem.
Unfortunately we are able to jump from the ~70GB limit to a full
filesystem before htcachclean happens to run again. Reduce the limit to
60000M to give us more headroom and hopefully avoid filling the fs
between cache clean runs.

Change-Id: I8aa45eb0c396b54dbb3ec84e5ba8fd4ec7da9e27
This commit is contained in:
Clark Boylan 2021-10-28 11:29:17 -07:00
parent b73a99bc1e
commit 9bec46ed2c
1 changed files with 1 additions and 1 deletions

View File

@ -150,6 +150,6 @@
cron:
name: Apache cache cleanup
state: present
job: /usr/bin/flock -n /var/run/htcacheclean.lock /usr/bin/htcacheclean -n -p /var/cache/apache2/proxy -t -l 70200M > /dev/null
job: /usr/bin/flock -n /var/run/htcacheclean.lock /usr/bin/htcacheclean -n -p /var/cache/apache2/proxy -t -l 60000M > /dev/null
minute: '0'
hour: '*'