mirror of
				https://gitee.com/gitea/gitea
				synced 2025-11-04 16:40:24 +08:00 
			
		
		
		
	Add the ability to run crond inside the Docker container
- Add the crond init script for s6 - Add the RUN_CROND configuration variable to setup crond - Crond will not be run by default (hence the `down` file in the service directory) - `start.sh` check if RUN_CROND = "true" || "1" and remove this file to tell s6 to run the initscript - Resolves #2597
This commit is contained in:
		
							
								
								
									
										0
									
								
								docker/s6/crond/down
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										0
									
								
								docker/s6/crond/down
									
									
									
									
									
										Normal file
									
								
							
							
								
								
									
										9
									
								
								docker/s6/crond/run
									
									
									
									
									
										Executable file
									
								
							
							
						
						
									
										9
									
								
								docker/s6/crond/run
									
									
									
									
									
										Executable file
									
								
							@@ -0,0 +1,9 @@
 | 
			
		||||
#!/bin/sh
 | 
			
		||||
# Crontabs are located by default in /var/spool/cron/crontabs/
 | 
			
		||||
# The default configuration is also calling all the scripts in /etc/periodic/${period}
 | 
			
		||||
 | 
			
		||||
if test -f ./setup; then
 | 
			
		||||
    source ./setup
 | 
			
		||||
fi
 | 
			
		||||
 | 
			
		||||
exec gosu root /usr/sbin/crond -fS
 | 
			
		||||
@@ -48,6 +48,15 @@ else
 | 
			
		||||
    create_socat_links
 | 
			
		||||
fi
 | 
			
		||||
 | 
			
		||||
CROND=$(echo "$RUN_CROND" | tr '[:upper:]' '[:lower:]')
 | 
			
		||||
if [ "$CROND" = "true" -o "$CROND" = "1" ]; then
 | 
			
		||||
    echo "init:crond  | Cron Daemon (crond) will be run as requested by s6" 1>&2
 | 
			
		||||
    rm -f /app/gogs/docker/s6/crond/down
 | 
			
		||||
else
 | 
			
		||||
    # Tell s6 not to run the crond service
 | 
			
		||||
    touch /app/gogs/docker/s6/crond/down
 | 
			
		||||
fi
 | 
			
		||||
 | 
			
		||||
# Exec CMD or S6 by default if nothing present
 | 
			
		||||
if [ $# -gt 0 ];then
 | 
			
		||||
    exec "$@"
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user