diff --git a/README.md b/README.md index 4c4699e9..16476f10 100644 --- a/README.md +++ b/README.md @@ -27,7 +27,6 @@ Voici la liste des dépendances à installer sur le serveur principal (A). Paquets obligatoires: * python3-django (1.10, stretch) * python3-dateutil (stretch) - * texlive (stretch) * texlive-latex-base (stretch) * texlive-fonts-recommended (strech) * python3-djangorestframework (stretch) diff --git a/re2o/settings_local.example.py b/re2o/settings_local.example.py index 3c0b2fc2..766c37fc 100644 --- a/re2o/settings_local.example.py +++ b/re2o/settings_local.example.py @@ -97,9 +97,11 @@ LDAP = { 'base_user_dn' : 'cn=Utilisateurs,dc=ldap,dc=example,dc=org', 'base_userservice_dn' : 'ou=service-users,dc=ldap,dc=example,dc=org', 'base_usergroup_dn' : 'ou=posix,ou=groups,dc=ldap,dc=example,dc=org', + 'base_userservicegroup_dn' : 'ou=services,ou=groups,dc=ldap,dc=example,dc=org', 'user_gid' : 500, } + UID_RANGES = { 'users' : [21001,30000], 'service-users' : [20000,21000], @@ -110,13 +112,6 @@ GID_RANGES = { 'posix' : [501, 600], } -# Affchage des résultats -SEARCH_RESULT = 15 - -# Max machines et max alias autorisés par personne -MAX_INTERFACES = 4 -MAX_ALIAS = 4 - # Liste des vlans id disponible sur un switch VLAN_ID_LIST = [7,8,42,69] @@ -127,3 +122,4 @@ RADIUS_VLAN_DECISION = { } OPTIONNAL_APPS = () +