24 lines
		
	
	
		
			541 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			24 lines
		
	
	
		
			541 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
#!/bin/bash
 | 
						|
 | 
						|
KAZ_ROOT=/kaz
 | 
						|
. $KAZ_ROOT/bin/.commonFunctions.sh
 | 
						|
setKazVars
 | 
						|
 | 
						|
. $DOCKERS_ENV
 | 
						|
. $KAZ_KEY_DIR/env-ldapServ
 | 
						|
 | 
						|
LDAP_IP=$(docker inspect -f '{{.NetworkSettings.Networks.ldapNet.IPAddress}}' ldapServ)
 | 
						|
 | 
						|
read -p "quel éditeur ? [vi] " EDITOR
 | 
						|
EDITOR=${EDITOR:-vi}
 | 
						|
 | 
						|
# if [ ${EDITOR} = 'emacs' ]; then
 | 
						|
#   echo "ALERTE ALERTE !!! quelqu'un a voulu utiliser emacs :) :) :)"    
 | 
						|
#   exit
 | 
						|
# fi
 | 
						|
 
 | 
						|
EDITOR=${EDITOR:-vi}
 | 
						|
export EDITOR=${EDITOR}
 | 
						|
 | 
						|
ldapvi -h $LDAP_IP -D "cn=${LDAP_ADMIN_USERNAME},${ldap_root}" -w ${LDAP_ADMIN_PASSWORD} --discover
 |