22 lines
		
	
	
		
			387 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
		
			387 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
| #!/bin/bash
 | |
| 
 | |
| if [[ "${SKIP_SOGO}" =~ ^([yY][eE][sS]|[yY])+$ ]]; then
 | |
|   echo "SKIP_SOGO=y, skipping SOGo..."
 | |
|   sleep 365d
 | |
|   exit 0
 | |
| fi
 | |
| 
 | |
| if [[ ! -z ${REDIS_SLAVEOF_IP} ]]; then
 | |
|   cp /etc/syslog-ng/syslog-ng-redis_slave.conf /etc/syslog-ng/syslog-ng.conf
 | |
| fi
 | |
| 
 | |
| # Run hooks
 | |
| for file in /hooks/*; do
 | |
|   if [ -x "${file}" ]; then
 | |
|     echo "Running hook ${file}"
 | |
|     "${file}"
 | |
|   fi
 | |
| done
 | |
| 
 | |
| exec "$@"
 | 
