Ne rien faire si activer_cadolesldap est à "non"

This commit is contained in:
Philippe Caseiro 2020-03-13 11:54:51 +01:00
parent bbe6b3e122
commit 232c701946
1 changed files with 7 additions and 2 deletions

View File

@ -38,5 +38,10 @@ function main()
fi
}
main $@
exit ${?}
if [[ $(CreoleGet activer_cadolesldap non) == "oui" ]]
then
main $@
exit ${?}
else
exit 0
fi