diff options
author | Bob Gilligan <gilligan@vyatta.com> | 2011-01-17 19:43:14 -0800 |
---|---|---|
committer | Bob Gilligan <gilligan@vyatta.com> | 2011-01-17 19:43:14 -0800 |
commit | 71a31ff516ef63f5ce52ca1bca17e10497a6a15d (patch) | |
tree | 120bf12023e0afba63763a9012e5511563604342 /sysconf | |
parent | bdcb00f49def04bde4fcd0e6cf3511c37f0a68b8 (diff) | |
download | vyatta-cfg-system-71a31ff516ef63f5ce52ca1bca17e10497a6a15d.tar.gz vyatta-cfg-system-71a31ff516ef63f5ce52ca1bca17e10497a6a15d.zip |
Bugfix 6668: Check to see if log files need rotation hourly.
Previously, log file rotation was checked by cron daily. Some log
file -- such as those generated by PPP -- can grow rapidly. Such
infrequent checking can lead to running out of disk space on systems
with small disk drives or flash storage. This change checks for
rotation hourly.
Diffstat (limited to 'sysconf')
-rw-r--r-- | sysconf/vyatta-logrotate-hourly | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/sysconf/vyatta-logrotate-hourly b/sysconf/vyatta-logrotate-hourly new file mode 100644 index 00000000..055b4d5f --- /dev/null +++ b/sysconf/vyatta-logrotate-hourly @@ -0,0 +1,5 @@ +#!/bin/sh + +test -x /usr/sbin/logrotate || exit 0 +/usr/sbin/logrotate /etc/logrotate.conf + |