#!/bin/bash cLDAP_URL="ldaps://ldap.mageia.org" cLDAP_BASE_DN="ou=People,dc=mageia,dc=org" if [ "x$USER" == "xroot" ] then echo "Please what's your LDAP uid ?" read -a vUID else vUID=$USER fi if [ "x$1" == "x" ] then echo "Please give the uid you want to edit ?" read -a vEDIT_UID else vEDIT_UID=$1 fi /usr/bin/ldapvi -q --tls allow -h ${cLDAP_URL} -D "uid=${vUID},${cLDAP_BASE_DN}" -b "uid=${vEDIT_UID},${cLDAP_BASE_DN}"