Last active
September 26, 2021 16:30
-
-
Save wshihadeh/83507d2cd0255b82d4ae0e0e08473d0b to your computer and use it in GitHub Desktop.
LDAP bootstrap file
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
dn: cn=developer,dc=shihadeh,dc=intern | |
changetype: add | |
objectclass: inetOrgPerson | |
cn: developer | |
givenname: developer | |
sn: Developer | |
displayname: Developer User | |
mail: [email protected] | |
userpassword: developer_pass | |
dn: cn=maintainer,dc=shihadeh,dc=intern | |
changetype: add | |
objectclass: inetOrgPerson | |
cn: maintainer | |
givenname: maintainer | |
sn: Maintainer | |
displayname: Maintainer User | |
mail: [email protected] | |
userpassword: maintainer_pass | |
dn: cn=admin_gh,dc=shihadeh,dc=intern | |
changetype: add | |
objectclass: inetOrgPerson | |
cn: admin_gh | |
givenname: admin_gh | |
sn: AdminGithub | |
displayname: Admin Github User | |
mail: [email protected] | |
userpassword: admin_gh_pass | |
dn: ou=Groups,dc=shihadeh,dc=intern | |
changetype: add | |
objectclass: organizationalUnit | |
ou: Groups | |
dn: ou=Users,dc=shihadeh,dc=intern | |
changetype: add | |
objectclass: organizationalUnit | |
ou: Users | |
dn: cn=Admins,ou=Groups,dc=shihadeh,dc=intern | |
changetype: add | |
cn: Admins | |
objectclass: groupOfUniqueNames | |
uniqueMember: cn=admin_gh,dc=shihadeh,dc=intern | |
dn: cn=Maintaners,ou=Groups,dc=shihadeh,dc=intern | |
changetype: add | |
cn: Maintaners | |
objectclass: groupOfUniqueNames | |
uniqueMember: cn=maintainer,dc=shihadeh,dc=intern | |
uniqueMember: cn=developer,dc=shihadeh,dc=intern |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment