summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 1165375)
raw | patch | inline | side by side (parent: 1165375)
author | cajus <cajus@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Fri, 31 Oct 2008 15:04:31 +0000 (15:04 +0000) | ||
committer | cajus <cajus@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Fri, 31 Oct 2008 15:04:31 +0000 (15:04 +0000) |
git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@12848 594d385d-05f5-0310-b6e9-bd551577e9d8
gosa-core/FAQ | patch | blob | history | |
gosa-core/plugins/personal/posix/class_posixAccount.inc | patch | blob | history |
diff --git a/gosa-core/FAQ b/gosa-core/FAQ
index 4b1a1ed086624c71047d307e211fb6db5d8e6a17..1b2958c6964b07f8aaefa62900095d1dea94b680 100644 (file)
--- a/gosa-core/FAQ
+++ b/gosa-core/FAQ
Q: I'd like to assign different uid bases for certain user/group objects.
How can this be achieved?
-A: Use the 'nextIdHook' in your gosa.conf's location section to specify a script
+A: Use the 'baseIdHook' in your gosa.conf's location section to specify a script
which handles the ID generation externaly. It get's called with the "dn"
and the attribute to be ID'd. It should return an integer value.
diff --git a/gosa-core/plugins/personal/posix/class_posixAccount.inc b/gosa-core/plugins/personal/posix/class_posixAccount.inc
index a83d287ae68b913b872fe89a41923c09c14ef3d3..6c10c6670abd2ff47860e34e2aa0c314fa2b4aeb 100644 (file)
}
/* Find out next free id near to UID_BASE */
- if ($this->config->get_cfg_value("nextIdHook") == ""){
+ if ($this->config->get_cfg_value("baseIdHook") == ""){
$base= $lwm;
} else {
/* Call base hook */