aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEric Bélanger <snowmaniscool@gmail.com>2011-06-03 23:18:50 -0400
committerTom Gundersen <teg@jklm.no>2011-06-08 00:59:28 +0200
commit32047175759770ac0b37a1fede68a13e2b4d4fdd (patch)
tree4c1e88ab1e0dd5d5b7c82a818aa2cc89ab506aee
parent49932857b8bc41c2e494bea1ee278fffa724519d (diff)
downloadinitscripts-32047175759770ac0b37a1fede68a13e2b4d4fdd.tar.xz
Add logrotate config file to rotate /var/log/boot
Signed-off-by: Eric Bélanger <snowmaniscool@gmail.com> Signed-off-by: Tom Gundersen <teg@jklm.no>
-rw-r--r--Makefile3
-rw-r--r--bootlog9
2 files changed, 11 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index ff7d907..c568b13 100644
--- a/Makefile
+++ b/Makefile
@@ -1,5 +1,5 @@
VER := $(shell git describe)
-DIRS := /etc/rc.d /etc/conf.d /etc/rc.d/functions.d /sbin /etc/bash_completion.d /usr/share/zsh/site-functions
+DIRS := /etc/rc.d /etc/conf.d /etc/rc.d/functions.d /etc/logrotate.d /sbin /etc/bash_completion.d /usr/share/zsh/site-functions
minilogd: minilogd.o
@@ -9,6 +9,7 @@ installdirs:
install: minilogd installdirs
install -m644 -t $(DESTDIR)/etc inittab rc.conf
install -m755 -t $(DESTDIR)/etc rc.local rc.local.shutdown rc.multi rc.shutdown rc.single rc.sysinit
+ install -m644 -t $(DESTDIR)/etc/logrotate.d bootlog
install -m644 -t $(DESTDIR)/etc/rc.d functions
install -m755 -t $(DESTDIR)/etc/rc.d hwclock network netfs
install -m755 -t $(DESTDIR)/sbin minilogd rc.d
diff --git a/bootlog b/bootlog
new file mode 100644
index 0000000..b97af0b
--- /dev/null
+++ b/bootlog
@@ -0,0 +1,9 @@
+/var/log/boot {
+ compress
+ rotate 1
+ size=+1024k
+ notifempty
+ missingok
+ copytruncate
+ noolddir
+}