2018-12-18 09:39:17 +01:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
#
|
|
|
|
# Initialisation of LDAP Directory
|
|
|
|
#
|
|
|
|
|
|
|
|
|
|
|
|
#
|
|
|
|
# Run command as particular user
|
|
|
|
#
|
|
|
|
function runAs() {
|
|
|
|
USER=${1}
|
|
|
|
shift
|
|
|
|
CMD="su ${USER} -s /bin/bash -c ${@}"
|
|
|
|
|
|
|
|
eval ${CMD}
|
|
|
|
return ${?}
|
|
|
|
}
|
|
|
|
|
|
|
|
function main()
|
|
|
|
{
|
|
|
|
MODE=${1}
|
|
|
|
|
|
|
|
result=0
|
|
|
|
|
|
|
|
|
|
|
|
if [[ ${MODE} == "instance" ]]
|
|
|
|
then
|
|
|
|
LDIF="/etc/cadolesldap/init/cadolesldap.ldif"
|
|
|
|
USER="openldap"
|
|
|
|
CMD="\"slapadd -l ${LDIF} -f \"/etc/ldap/slapd.conf\"\""
|
|
|
|
|
|
|
|
service slapd stop
|
|
|
|
runAs ${USER} ${CMD}
|
|
|
|
result=$((result+${?}))
|
|
|
|
service slapd start
|
|
|
|
return ${result}
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
2020-03-13 11:54:51 +01:00
|
|
|
if [[ $(CreoleGet activer_cadolesldap non) == "oui" ]]
|
|
|
|
then
|
|
|
|
main $@
|
|
|
|
exit ${?}
|
|
|
|
else
|
|
|
|
exit 0
|
|
|
|
fi
|