Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

groups STAT_USER and ADMIN_USERS renamed #2

Merged
merged 1 commit into from
Sep 25, 2013
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions csv2ldif/CSV2LDIF.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,11 +45,11 @@
'id': 2,
'users': [],
},
'ADMIN_USERS': {
'MOD_LDAPADMIN': {
'id': 3,
'users': [],
},
'STAT_USER': {
'MOD_ANALYTICS': {
'id': 4,
'users': [],
},
Expand Down
20 changes: 14 additions & 6 deletions georchestra.ldif
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ objectClass: top
objectClass: posixGroup
gidNumber: 1
cn: ADMINISTRATOR
description: This group grants admin access to GeoServer
memberUid: extractorapp_privileged_admin
memberUid: testadmin

Expand All @@ -35,21 +36,24 @@ objectClass: top
objectClass: posixGroup
gidNumber: 2
cn: SV_ADMIN
description: This group grants admin access to GeoNetwork
memberUid: testadmin

# ADMIN_USERS, groups, georchestra.org
dn: cn=ADMIN_USERS,ou=groups,dc=georchestra,dc=org
# MOD_LDAPADMIN, groups, georchestra.org
dn: cn=MOD_LDAPADMIN,ou=groups,dc=georchestra,dc=org
objectClass: top
objectClass: posixGroup
gidNumber: 3
cn: ADMIN_USERS
cn: MOD_LDAPADMIN
description: This group grants access to the LDAPadmin private User Interface
memberUid: testadmin

# STAT_USER, groups, georchestra.org
dn: cn=STAT_USER,ou=groups,dc=georchestra,dc=org
# MOD_ANALYTICS, groups, georchestra.org
dn: cn=MOD_ANALYTICS,ou=groups,dc=georchestra,dc=org
objectClass: top
objectClass: posixGroup
cn: STAT_USER
cn: MOD_ANALYTICS
description: This group grants access to the Analytics application
gidNumber: 4
memberUid: testadmin

Expand All @@ -58,6 +62,7 @@ dn: cn=SV_EDITOR,ou=groups,dc=georchestra,dc=org
objectClass: top
objectClass: posixGroup
cn: SV_EDITOR
description: This group grants edit rights in GeoNetwork and Mapfishapp
gidNumber: 5
memberUid: testeditor

Expand All @@ -66,6 +71,7 @@ dn: cn=SV_REVIEWER,ou=groups,dc=georchestra,dc=org
objectClass: top
objectClass: posixGroup
cn: SV_REVIEWER
description: This group grants reviewer rights in GeoNetwork
gidNumber: 6
memberUid: testreviewer

Expand All @@ -75,6 +81,7 @@ objectClass: top
objectClass: posixGroup
gidNumber: 7
cn: SV_USER
description: This group grants basic, authenticated access to the whole SDI
memberUid: testuser

# PENDING_USERS, groups, georchestra.org
Expand All @@ -83,6 +90,7 @@ objectClass: top
objectClass: posixGroup
gidNumber: 8
cn: PENDING_USERS
description: This group does not grant any right inside the SDI. Users in this group are requesting a fully fledged account.

# users, georchestra.org
dn: ou=users,dc=georchestra,dc=org
Expand Down