Major changes in transport layer - generalized for metadata and search jobs.
This commit is contained in:
parent
d086760277
commit
4b07803e0c
16 changed files with 650 additions and 347 deletions
|
@ -0,0 +1,7 @@
|
|||
<?
|
||||
header("Content-type: text/plain");
|
||||
$gid = posix_getgid();
|
||||
$egid = posix_getegid();
|
||||
$info = posix_getgrgid($egid);
|
||||
echo $info['name'];
|
||||
?>
|
|
@ -0,0 +1,6 @@
|
|||
<?
|
||||
header("Content-type: text/plain");
|
||||
require "../conf.php";
|
||||
echo "http://{$config['storageUrlHost']}:{$config['storageUrlPort']}".
|
||||
"{$config['storageUrlPath']}";
|
||||
?>
|
|
@ -0,0 +1,6 @@
|
|||
<?
|
||||
header("Content-type: text/plain");
|
||||
require "../conf.php";
|
||||
echo "http://{$config['storageUrlHost']}:{$config['storageUrlPort']}".
|
||||
"{$config['storageUrlPath']}/{$config['storageXMLRPC']}";
|
||||
?>
|
|
@ -23,7 +23,7 @@
|
|||
|
||||
|
||||
Author : $Author: tomas $
|
||||
Version : $Revision: 1.3 $
|
||||
Version : $Revision: 1.4 $
|
||||
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/modules/storageServer/var/install/install.php,v $
|
||||
|
||||
------------------------------------------------------------------------------*/
|
||||
|
@ -53,10 +53,6 @@ if(PEAR::isError($dbc)){
|
|||
$dbc->setFetchMode(DB_FETCHMODE_ASSOC);
|
||||
$gb = &new GreenBox(&$dbc, $config);
|
||||
|
||||
echo "\nIMPORTANT settings:\n";
|
||||
echo " Makefile: HTTP_GROUP - group of running http daemon\n";
|
||||
echo " var/xmlrpc/testRunner.sh: XMLRPC - URL of XMLRPC server\n\n";
|
||||
|
||||
echo "Storage: Install ...\n";
|
||||
$dbc->setErrorHandling(PEAR_ERROR_RETURN);
|
||||
$gb->uninstall();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue