From: hickert Date: Mon, 17 Jul 2006 04:47:47 +0000 (+0000) Subject: Updated plinfo X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=604f6a0887ff0a21a3b17ff79f5f30857eee2d01;p=gosa.git Updated plinfo git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@4162 594d385d-05f5-0310-b6e9-bd551577e9d8 --- diff --git a/plugins/personal/posix/class_posixAccount.inc b/plugins/personal/posix/class_posixAccount.inc index 748b23cf1..70ccf42cf 100644 --- a/plugins/personal/posix/class_posixAccount.inc +++ b/plugins/personal/posix/class_posixAccount.inc @@ -1216,30 +1216,33 @@ class posixAccount extends plugin function plInfo() { - return (array("plDescription" => _("POSIX account"), - "plSelfModify" => TRUE, - "plDepends" => array("objectClass" => "gosaAccount"), - - "homeDirectory" => _("Home directory"), - "uidNumber" => _("User ID"), - "gidNumber" => _("Group ID"), - "homeDirectory" => _("Home directory"), - "primaryGroup" => _("Primary group"), - - "loginShell" => _("Shell"), -// "gecos" => _(""), - - "shadowMin" => _("Shadow min"), - "shadowMax" => _("Shadow max"), - "shadowWarning" => _("Shadow warning"), - "shadowInactive" => _("Shadow inactive"), - "shadowLastChange" => _("Shadow last change"), - - "shadowExpire" => _("Shadow expire"), - //"gosaDefaultPrinter" => _(""), - //"gosaDefaultLanguage" => _(""), - "accessTo" => _("System trust"), - "trustModel" => _("System trust model"))) ; + return (array( + "plDescription" => _("POSIX account"), + "plSelfModify" => TRUE, + "plDepends" => array("user"), + "plPriority" => 1, + "plSection" => "personal", + "plCategory" => array("users"), + "plOptions" => array(), + + "plProvidedAcls" => array( + "homeDirectory" => _("Home directory"), + "uidNumber" => _("User ID"), + "gidNumber" => _("Group ID"), + "homeDirectory" => _("Home directory"), + "primaryGroup" => _("Primary group"), + + "loginShell" => _("Shell"), + "shadowMin" => _("Shadow min"), + "shadowMax" => _("Shadow max"), + "shadowWarning" => _("Shadow warning"), + "shadowInactive" => _("Shadow inactive"), + "shadowLastChange" => _("Shadow last change"), + + "shadowExpire" => _("Shadow expire"), + "accessTo" => _("System trust"), + "trustModel" => _("System trust model"))) + ) ; } }