Première version

This commit is contained in:
2025-07-31 16:03:18 +02:00
commit 1893f8375e
6 changed files with 161 additions and 0 deletions

13
etabs_with_individus.sh Normal file
View File

@ -0,0 +1,13 @@
#!/bin/bash
for etab in $(python3 find_individus.py -t current_etabs)
do
ldapsearch -LLL -x -b "ou=$etab,ou=tst-colleges,ou=education,o=gouv,c=fr" uid | grep -q uid
res=$?
if [ $res -eq 0 ]
then
echo $etab
fi
done
exit 0