mirror of
				https://github.com/linuxserver/docker-swag.git
				synced 2025-10-31 21:17:42 +09:00 
			
		
		
		
	
		
			
				
	
	
		
			12 lines
		
	
	
		
			249 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
		
			249 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
| #!/usr/bin/with-contenv bash
 | |
| # shellcheck shell=bash
 | |
| 
 | |
| # copy crontabs if needed
 | |
| if [[ ! -f /config/crontabs/root ]]; then
 | |
|     cp /etc/crontabs/root /config/crontabs/
 | |
| fi
 | |
| 
 | |
| # import user crontabs
 | |
| rm /etc/crontabs/*
 | |
| cp /config/crontabs/* /etc/crontabs/
 |