summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 322ee95)
raw | patch | inline | side by side (parent: 322ee95)
author | hickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Wed, 23 Apr 2008 13:44:49 +0000 (13:44 +0000) | ||
committer | hickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Wed, 23 Apr 2008 13:44:49 +0000 (13:44 +0000) |
-krb_get_policy function
git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@10656 594d385d-05f5-0310-b6e9-bd551577e9d8
git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@10656 594d385d-05f5-0310-b6e9-bd551577e9d8
gosa-core/include/class_gosaSupportDaemon.inc | patch | blob | history |
diff --git a/gosa-core/include/class_gosaSupportDaemon.inc b/gosa-core/include/class_gosaSupportDaemon.inc
index 28f77e33d3257be1a9fa80c14f986683a11d424d..3b07b10c8b92396d3bd69ca238981a006836f0d0 100644 (file)
(Uses the GOsa support daemon instead of the ldap database.)
@return Array The policy settings for the given policy name.
*/
- public function krb5_get_policy($name)
+ public function krb5_get_policy($server,$name)
{
$res = array();
return($ret);
}
+ /* Check if the given server is a valid mac address
+ */
+ if(!tests::is_mac($server)){
+ trigger_error("The given server address '".$server."' is invalid, it must be a valid mac address");
+ return($ret);
+ }
+
/* Prepare request event
*/
$xml_msg =
"<header>gosa_krb5_get_policy</header>".
"<policy>".$name."</policy>".
"<source>GOSA</source>".
- "<target>GOSA</target>".
+ "<target>".$server."</target>".
"</xml>";
- return($this->_send($xml_msg,TRUE));
+ $tmp = $this->_send($xml_msg,TRUE);
+ if(isset($tmp['XML'])){
+ $attrs = array("MASK","POLICY_REFCNT","PW_HISTORY_NUM","PW_MAX_LIFE","PW_MIN_CLASSES","PW_MIN_LENGTH","PW_MIN_LIFE");
+ foreach($attrs as $attr){
+ if(isset($tmp['XML'][$attr])){
+ $ret[$attr] = $tmp['XML'][$attr];
+ }
+ }
+ }
+ return($ret);
}