mirror of
				https://gitlab.alpinelinux.org/alpine/aports.git
				synced 2025-11-04 02:11:39 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			10 lines
		
	
	
		
			371 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
		
			371 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
#!/bin/sh
 | 
						|
 | 
						|
echo "please remove other syslog services and activate syslog-ng with:"
 | 
						|
echo "rc-service syslog-ng start"
 | 
						|
echo "rc-update add syslog-ng boot"
 | 
						|
[ ! -f /var/log/auth.log ] && touch /var/log/auth.log
 | 
						|
[ ! -f /var/log/error.log ] && touch /var/log/error.log
 | 
						|
[ ! -f /var/log/mail.log ] && touch /var/log/mail.log
 | 
						|
[ ! -f /var/log/kern.log ] && touch /var/log/kern.log
 |