mirror of
				https://github.com/samply/bridgehead.git
				synced 2025-11-03 21:50:18 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			23 lines
		
	
	
		
			711 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			23 lines
		
	
	
		
			711 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
BROKER_ID=broker.dev.ccp-it.dktk.dkfz.de
 | 
						|
BROKER_URL=https://${BROKER_ID}
 | 
						|
PROXY_ID=${SITE_ID}.${BROKER_ID}
 | 
						|
FOCUS_BEAM_SECRET_SHORT="$(cat /proc/sys/kernel/random/uuid | sed 's/[-]//g' | head -c 20)"
 | 
						|
FOCUS_RETRY_COUNT=32
 | 
						|
SUPPORT_EMAIL=support-ccp@dkfz-heidelberg.de
 | 
						|
PRIVATEKEYFILENAME=/etc/bridgehead/pki/${SITE_ID}.priv.pem
 | 
						|
 | 
						|
# This will load id-management setup. Effective only if id-management configuration is defined.
 | 
						|
source $PROJECT/modules/id-management-setup.sh
 | 
						|
idManagementSetup
 | 
						|
# This will load nngm setup. Effective only if nngm configuration is defined.
 | 
						|
source $PROJECT/nngm-setup.sh
 | 
						|
nngmSetup
 | 
						|
 | 
						|
mtbaSetup
 | 
						|
 | 
						|
for module in $PROJECT/modules/*.sh
 | 
						|
do
 | 
						|
    log DEBUG "sourcing $module"
 | 
						|
    source $module
 | 
						|
done
 |