mirror of
				https://github.com/samply/bridgehead.git
				synced 2025-11-04 11:50:17 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			9 lines
		
	
	
		
			199 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
			
		
		
	
	
			9 lines
		
	
	
		
			199 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
#!/bin/bash -e
 | 
						|
 | 
						|
function scoutSetup() {
 | 
						|
    if [[ -n "$ENABLE_SCOUT" && -n "$SCOUT_BASIC_AUTH_USERS" ]]; then
 | 
						|
        echo "Starting scout."
 | 
						|
	    OVERRIDE+=" -f ./modules/scout-compose.yml"
 | 
						|
    fi
 | 
						|
}
 |