Redmine 3.4.4
This commit is contained in:
commit
64924a6376
2112 changed files with 259028 additions and 0 deletions
24
test/fixtures/ldap/slapd.centos6.conf
vendored
Normal file
24
test/fixtures/ldap/slapd.centos6.conf
vendored
Normal file
|
@ -0,0 +1,24 @@
|
|||
# Sample OpenLDAP configuration file for Redmine LDAP test server
|
||||
# CentOS6 openldap-servers-2.4.40-6.el6_7.x86_64
|
||||
#
|
||||
|
||||
include /etc/openldap/schema/core.schema
|
||||
include /etc/openldap/schema/cosine.schema
|
||||
include /etc/openldap/schema/inetorgperson.schema
|
||||
include /etc/openldap/schema/openldap.schema
|
||||
include /etc/openldap/schema/nis.schema
|
||||
|
||||
pidfile /var/run/openldap/slapd.pid
|
||||
argsfile /var/run/openldap/slapd.args
|
||||
|
||||
modulepath /usr/lib64/openldap
|
||||
moduleload back_bdb.la
|
||||
|
||||
database bdb
|
||||
suffix "dc=redmine,dc=org"
|
||||
rootdn "cn=Manager,dc=redmine,dc=org"
|
||||
rootpw secret
|
||||
directory /var/lib/ldap
|
||||
|
||||
# Indices to maintain
|
||||
index objectClass eq
|
19
test/fixtures/ldap/slapd.conf
vendored
Normal file
19
test/fixtures/ldap/slapd.conf
vendored
Normal file
|
@ -0,0 +1,19 @@
|
|||
# Sample OpenLDAP configuration file for Redmine LDAP test server
|
||||
#
|
||||
ucdata-path ./ucdata
|
||||
include ./schema/core.schema
|
||||
include ./schema/cosine.schema
|
||||
include ./schema/inetorgperson.schema
|
||||
include ./schema/openldap.schema
|
||||
include ./schema/nis.schema
|
||||
|
||||
pidfile ./run/slapd.pid
|
||||
argsfile ./run/slapd.args
|
||||
|
||||
database bdb
|
||||
suffix "dc=redmine,dc=org"
|
||||
rootdn "cn=Manager,dc=redmine,dc=org"
|
||||
rootpw secret
|
||||
directory ./redmine
|
||||
# Indices to maintain
|
||||
index objectClass eq
|
23
test/fixtures/ldap/slapd.ubuntu.12.04.conf
vendored
Normal file
23
test/fixtures/ldap/slapd.ubuntu.12.04.conf
vendored
Normal file
|
@ -0,0 +1,23 @@
|
|||
# Sample OpenLDAP configuration file for Redmine LDAP test server
|
||||
# Ubuntu 12.04 LTS Server Edition 64 bit slapd (2.4.28-1.1ubuntu4.6)
|
||||
#
|
||||
|
||||
include /etc/ldap/schema/core.schema
|
||||
include /etc/ldap/schema/cosine.schema
|
||||
include /etc/ldap/schema/inetorgperson.schema
|
||||
include /etc/ldap/schema/openldap.schema
|
||||
include /etc/ldap/schema/nis.schema
|
||||
|
||||
pidfile /var/run/slapd/slapd.pid
|
||||
argsfile /var/run/slapd/slapd.args
|
||||
|
||||
modulepath /usr/lib/ldap
|
||||
moduleload back_bdb.la
|
||||
|
||||
database bdb
|
||||
suffix "dc=redmine,dc=org"
|
||||
rootdn "cn=Manager,dc=redmine,dc=org"
|
||||
rootpw secret
|
||||
|
||||
# Indices to maintain
|
||||
index objectClass eq
|
47
test/fixtures/ldap/test-ldap.ldif
vendored
Normal file
47
test/fixtures/ldap/test-ldap.ldif
vendored
Normal file
|
@ -0,0 +1,47 @@
|
|||
dn: dc=redmine,dc=org
|
||||
objectClass: top
|
||||
objectClass: dcObject
|
||||
objectClass: organization
|
||||
o: redmine.org
|
||||
dc: redmine
|
||||
|
||||
dn: cn=admin,dc=redmine,dc=org
|
||||
objectClass: simpleSecurityObject
|
||||
objectClass: organizationalRole
|
||||
cn: admin
|
||||
description: LDAP administrator
|
||||
userPassword:: e2NyeXB0fWlWTU9DcUt6WWxXRDI=
|
||||
|
||||
dn: ou=Person,dc=redmine,dc=org
|
||||
ou: Person
|
||||
objectClass: top
|
||||
objectClass: organizationalUnit
|
||||
|
||||
dn: uid=example1,ou=Person,dc=redmine,dc=org
|
||||
objectClass: posixAccount
|
||||
objectClass: top
|
||||
objectClass: inetOrgPerson
|
||||
gidNumber: 0
|
||||
givenName: Example
|
||||
sn: One
|
||||
uid: example1
|
||||
homeDirectory: /home/example1
|
||||
cn: Example One
|
||||
uidNumber: 0
|
||||
mail: example1@redmine.org
|
||||
userPassword:: e1NIQX1mRXFOQ2NvM1lxOWg1WlVnbEQzQ1pKVDRsQnM9
|
||||
|
||||
dn: uid=edavis,ou=Person,dc=redmine,dc=org
|
||||
objectClass: posixAccount
|
||||
objectClass: top
|
||||
objectClass: inetOrgPerson
|
||||
gidNumber: 0
|
||||
givenName: Eric
|
||||
sn: Davis
|
||||
uid: edavis
|
||||
mail: edavis@littlestreamsoftware.com
|
||||
homeDirectory: /home/edavis
|
||||
cn: Eric Davis
|
||||
uidNumber: 0
|
||||
userPassword:: e1NIQX1mRXFOQ2NvM1lxOWg1WlVnbEQzQ1pKVDRsQnM9
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue