mirror of
				https://github.com/factoriotools/factorio-docker.git
				synced 2025-10-31 17:08:08 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			12 lines
		
	
	
		
			289 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
		
			289 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
| #!/bin/bash
 | |
| 
 | |
| PLAYERS=$(rcon /players)
 | |
| ONLINE_COUNT=$(echo "$PLAYERS" | grep -c " (online)$")
 | |
| 
 | |
| if [[ "$ONLINE_COUNT" -gt "0" ]]; then
 | |
|     echo "$PLAYERS"
 | |
|     # exit with 75 (EX_TEMPFAIL) so watchtower skips the update
 | |
|     # https://containrrr.dev/watchtower/lifecycle-hooks/
 | |
|     exit 75
 | |
| fi
 |