Skip to content

Commit

Permalink
Improve example LDAP group
Browse files Browse the repository at this point in the history
  • Loading branch information
Matthias Ronge authored Nov 12, 2020
1 parent df8814b commit 84fe86e
Showing 1 changed file with 7 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,19 +14,20 @@
SET SQL_SAFE_UPDATES = 0;

UPDATE ldapGroup SET homeDirectory = '/usr/local/kitodo/users/{login}',
gidNumber = '242',
userDN = 'cn={login},ou=user,o=TestOrg,dc=kitodo,dc=org',
title = 'Local LDAP',
gidNumber = '100',
userDN = 'cn={login},ou=users,dc=nodomain',
objectClasses = 'top,inetOrgPerson,posixAccount,shadowAccount,sambaSamAccount',
sambaSID = 'S-1-5-21-1234567890-123456789-1234567890-{uidnumber*2+1001}',
sn = '{login}',
uid = '{login}',
description = 'description',
description = 'Exemplary configuration of an LDAP group',
displayName = '{user full name}',
gecos = 'gecos',
loginShell = 'loginShell',
gecos = '{user full name}',
loginShell = '/bin/false',
sambaAcctFlags = '[U ]',
sambaLogonScript = '_{login}.bat',
sambaPrimaryGroupSID = 'S-1-5-21-1234567890-123456789-1234567890-513',
sambaPrimaryGroupSID = 'S-1-5-21-1234567890-123456789-1234567890-1000',
sambaPasswordMustChange = '2147483647',
sambaPasswordHistory = '00000000000000000000000000000000000000',
sambaLogonHours = 'FFFFFFFFFFFFFFFFFFFF',
Expand Down

0 comments on commit 84fe86e

Please sign in to comment.