mirror of
				https://github.com/ElvishArtisan/rivendell.git
				synced 2025-11-04 08:04:12 +01:00 
			
		
		
		
	* Added a sample syslog.conf(5) snippet in 'conf/syslog.conf-sample'. * Added a sample logrotate(5) snippet in 'conf/logrotate-sample'.
		
			
				
	
	
		
			19 lines
		
	
	
		
			338 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			338 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
#
 | 
						|
# This defines the rotation rules for the Rivendell syslogs.
 | 
						|
#
 | 
						|
 | 
						|
/var/log/rivendell/operations
 | 
						|
/var/log/rivendell/debug
 | 
						|
{
 | 
						|
    missingok
 | 
						|
    daily
 | 
						|
    rotate 30
 | 
						|
    maxage 30
 | 
						|
    dateext
 | 
						|
    dateyesterday
 | 
						|
    sharedscripts
 | 
						|
    postrotate
 | 
						|
        /bin/kill -HUP `cat /var/run/syslogd.pid 2> /dev/null` 2> /dev/null || true
 | 
						|
    endscript
 | 
						|
}
 |