mirror of
https://github.com/YunoHost/moulinette.git
synced 2024-09-03 20:06:31 +02:00
[doc] add other user related schemas
This commit is contained in:
parent
c6daa6996a
commit
a5f492e53f
1 changed files with 31 additions and 0 deletions
31
doc/ldap.rst
31
doc/ldap.rst
|
@ -143,6 +143,37 @@ The admin user is a special case that looks like this:
|
||||||
uidNumber: 1007
|
uidNumber: 1007
|
||||||
uid: admin
|
uid: admin
|
||||||
|
|
||||||
|
Other user related schemas:
|
||||||
|
|
||||||
|
::
|
||||||
|
|
||||||
|
|
||||||
|
# path: cn=admins,ou=groups,dc=yunohost,dc=org
|
||||||
|
objectClass: posixGroup
|
||||||
|
objectClass: top
|
||||||
|
memberUid: admin
|
||||||
|
gidNumber: 4001
|
||||||
|
cn: admins
|
||||||
|
|
||||||
|
# path: cn=sftpusers,ou=groups,dc=yunohost,dc=org
|
||||||
|
objectClass: posixGroup
|
||||||
|
objectClass: top
|
||||||
|
gidNumber: 4002
|
||||||
|
cn: sftpusers
|
||||||
|
memberUid: admin
|
||||||
|
memberUid: alice
|
||||||
|
# and all other users
|
||||||
|
|
||||||
|
# path: cn=admin,ou=sudo,dc=yunohost,dc=org
|
||||||
|
# this entry seems to specify which unix user is a sudoer
|
||||||
|
cn: admin
|
||||||
|
sudoCommand: ALL
|
||||||
|
sudoUser: admin
|
||||||
|
objectClass: sudoRole
|
||||||
|
objectClass: top
|
||||||
|
sudoOption: !authenticate
|
||||||
|
sudoHost: ALL
|
||||||
|
|
||||||
Reading users from LDAP
|
Reading users from LDAP
|
||||||
-----------------------
|
-----------------------
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue