modfied include-lines to new location of files
This commit is contained in:
parent
0d98663e1e
commit
24eadec61e
|
@ -6,22 +6,23 @@ serverURL: ldap://localhost:389
|
||||||
# list of users who are allowed to use LDAP Account Manager
|
# list of users who are allowed to use LDAP Account Manager
|
||||||
# names have to be seperated by semicolons
|
# names have to be seperated by semicolons
|
||||||
# e.g. admins: cn=admin,dc=yourdomain,dc=org;cn=root,dc=yourdomain,dc=org
|
# e.g. admins: cn=admin,dc=yourdomain,dc=org;cn=root,dc=yourdomain,dc=org
|
||||||
admins: cn=admin,o=test,c=de;uid=testuser,o=test,c=de;cn=Manager,dc=home,dc=duergner
|
admins: cn=Manager,dc=my-domain,dc=com
|
||||||
|
|
||||||
|
|
||||||
# password to change these preferences via webfrontend
|
# password to change these preferences via webfrontend
|
||||||
passwd: lam
|
passwd: lam
|
||||||
|
|
||||||
# suffix of users
|
# suffix of users
|
||||||
# e.g. ou=People,dc=yourdomain,dc=org
|
# e.g. ou=People,dc=yourdomain,dc=org
|
||||||
usersuffix: o=test,c=de
|
usersuffix: ou=people,dc=my-domain,dc=com
|
||||||
|
|
||||||
# suffix of groups
|
# suffix of groups
|
||||||
# e.g. ou=Groups,dc=yourdomain,dc=org
|
# e.g. ou=Groups,dc=yourdomain,dc=org
|
||||||
groupsuffix: ou=group,o=test,c=de
|
groupsuffix: ou=groups,dc=my-domain,dc=com
|
||||||
|
|
||||||
# suffix of Samba hosts
|
# suffix of Samba hosts
|
||||||
# e.g. ou=machines,dc=yourdomain,dc=org
|
# e.g. ou=machines,dc=yourdomain,dc=org
|
||||||
hostsuffix: o=test,c=de
|
hostsuffix: ou=machines,dc=my-domain,dc=com
|
||||||
|
|
||||||
# minimum and maximum UID numbers
|
# minimum and maximum UID numbers
|
||||||
minUID: 10000
|
minUID: 10000
|
||||||
|
@ -57,4 +58,4 @@ grouplistAttributes: #cn;#gidNumber;#memberUID;#description
|
||||||
# entries can either be predefined values (e.g. '#cn' or '#uid')
|
# entries can either be predefined values (e.g. '#cn' or '#uid')
|
||||||
# or individual ones (e.g. 'cn:Host Name')
|
# or individual ones (e.g. 'cn:Host Name')
|
||||||
# values have to be seperated by semicolons
|
# values have to be seperated by semicolons
|
||||||
hostlistAttributes: #cn;#rid;#description
|
hostlistAttributes: #cn;#rid;#description;gidNumber:GID
|
||||||
|
|
|
@ -24,8 +24,8 @@ $Id$
|
||||||
*/
|
*/
|
||||||
|
|
||||||
include('../lib/account.inc'); // File with custom functions
|
include('../lib/account.inc'); // File with custom functions
|
||||||
include('../config/config.php');
|
include('../lib/config.inc');
|
||||||
include('../lib/ldap.php');
|
include('../lib/ldap.inc');
|
||||||
|
|
||||||
registervars(); // Register all needed variables in session and register session
|
registervars(); // Register all needed variables in session and register session
|
||||||
$error = "0";
|
$error = "0";
|
||||||
|
|
Loading…
Reference in New Issue