summaryrefslogtreecommitdiff
path: root/sysconf/vyatta-logrotate-hourly
diff options
context:
space:
mode:
authorBob Gilligan <gilligan@vyatta.com>2011-01-17 19:43:14 -0800
committerBob Gilligan <gilligan@vyatta.com>2011-01-17 19:43:14 -0800
commit71a31ff516ef63f5ce52ca1bca17e10497a6a15d (patch)
tree120bf12023e0afba63763a9012e5511563604342 /sysconf/vyatta-logrotate-hourly
parentbdcb00f49def04bde4fcd0e6cf3511c37f0a68b8 (diff)
downloadvyatta-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/vyatta-logrotate-hourly')
-rw-r--r--sysconf/vyatta-logrotate-hourly5
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
+