diff --git a/gestion/ldap_crans.py b/gestion/ldap_crans.py index 55a779eb..f2f139b8 100755 --- a/gestion/ldap_crans.py +++ b/gestion/ldap_crans.py @@ -1945,7 +1945,11 @@ class machine(base_classes_crans) : # Dans quel réseau la machine doit-elle être placée ? if self.__typ == 'wifi' : - net = config.NETs['wifi'] + if self.proprietaire().etudes(0) == "ENS" and self.proprietaire().etudes(1) == "8": + # Personnel ENS + net = config.NETs['wifi-ens'] + else: + net = config.NETs['wifi'] elif self.__typ == 'borne' : net = config.NETs['bornes'] elif self.proprietaire().__class__ == crans :