mirror of
				https://github.com/samply/bridgehead.git
				synced 2025-11-04 04:50:17 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			18 lines
		
	
	
		
			498 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			498 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
BROKER_ID=broker.bbmri.samply.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=bridgehead@helpdesk.bbmri-eric.eu
 | 
						|
PRIVATEKEYFILENAME=/etc/bridgehead/pki/${SITE_ID}.priv.pem
 | 
						|
 | 
						|
for module in $PROJECT/modules/*.sh
 | 
						|
do
 | 
						|
    log DEBUG "sourcing $module"
 | 
						|
    source $module
 | 
						|
done
 | 
						|
 | 
						|
# This will load directory-sync setup.
 | 
						|
source $PROJECT/directory-sync.sh
 | 
						|
dirSetup
 |