summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 0296a60)
raw | patch | inline | side by side (parent: 0296a60)
author | hickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Thu, 27 Mar 2008 09:48:24 +0000 (09:48 +0000) | ||
committer | hickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Thu, 27 Mar 2008 09:48:24 +0000 (09:48 +0000) |
git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@10021 594d385d-05f5-0310-b6e9-bd551577e9d8
gosa-plugins/fai/admin/fai/class_faiPackage.inc | patch | blob | history |
diff --git a/gosa-plugins/fai/admin/fai/class_faiPackage.inc b/gosa-plugins/fai/admin/fai/class_faiPackage.inc
index 6d60ba9f400d6b06acf24f277083d6ed21c2dc8d..d76d2dd78824ab3f3af4ee5214a17708b1e99ad7 100644 (file)
/* Configuration dialog open*/
if((isset($_POST['Conpkg']))&&(isset($_POST['usedPackages']))&&(!empty($_POST['usedPackages'][0])) && $this->acl_is_writeable("FAIdebconfInfo")){
- $path = CONFIG_DIR."/fai/".$this->FAIdebianRelease."/debconf.d";
$pkg_config = array();
$pkg = $_POST['usedPackages'][0];
-
if(isset($this->ConfiguredPackages[$pkg])){
$pkg_config = $this->ConfiguredPackages[$pkg];
}
-
$this->dialog = new faiPackageConfiguration($this->config, $this->dn,$pkg, $this->FAIdebianRelease , $pkg_config);
$this->is_dialog =true;
}
function genPkgs()
{
$start = microtime(1);
- if(1 | $this->buffer === NULL || !count($this->buffer)){
+ if($this->buffer === NULL || !count($this->buffer)){
$this->buffer = array();
$q = new gosaSupportDaemon();
- $attrs = array("distribution", "package","version=''", "section", "description", "timestamp=''","template=''");
+ $attrs = array("distribution", "package","version", "section", "description", "timestamp","template=''");
$ret = $q->FAI_get_packages($this->FAIdebianRelease,$attrs);
if($q->is_error()){
msg_dialog::display(_("Service infrastructure"),msgPool::siError($q->get_error()),ERROR_DIALOG);
}
}
- printf("%0.6f",(microtime(1) - $start));
- print_a($this->buffer);
+# printf("%0.6f",(microtime(1) - $start));
return $this->buffer;
}