File: logrotate

package info (click to toggle)
ippl 1.4.14-2
  • links: PTS
  • area: main
  • in suites: woody
  • size: 380 kB
  • ctags: 241
  • sloc: ansic: 1,649; yacc: 434; sh: 187; lex: 160; makefile: 124
file content (23 lines) | stat: -rw-r--r-- 280 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# Logrotate file for ippl

/var/log/ippl/all.log {
	notifempty
	rotate 4
	weekly
	compress
	missingok
	postrotate
		/etc/init.d/ippl reload
	endscript
}

/var/log/ippl/udp.log {
	notifempty
	rotate 4
	weekly
	compress
	missingok
	postrotate
		/etc/init.d/ippl reload
	endscript
}