Updated to work with KH 3.1

This commit is contained in:
Deon George
2011-05-23 20:01:27 +10:00
parent 4765770a1a
commit a244d693b5
28 changed files with 1027 additions and 553 deletions

View File

@@ -4,7 +4,6 @@
* PTA Configuration - Authentication Driver
*
* @package PTA
* @subpackage TSM
* @category Configuration
* @author Deon George
* @copyright (c) 2010 phpTSMadmin Development Team
@@ -12,11 +11,11 @@
*/
return array(
'driver' => 'ORM',
'hash_method' => 'sha1',
'driver' => 'TSM',
'hash_method' => '',
'salt_pattern' => '1, 3, 5, 9, 14, 15, 20, 21, 28, 30',
'lifetime' => 1209600,
'session_key' => 'username',
'session_key' => 'auth_user',
'forced_key' => 'auth_forced',
);
?>

View File

@@ -0,0 +1,23 @@
<?php defined('SYSPATH') or die('No direct access allowed.');
/**
* PTA Configuration - Cache Driver
*
* @package PTA
* @subpackage Cache
* @category Configuration
* @author Deon George
* @copyright (c) 2010 phpTSMadmin Development Team
* @license http://phptsmadmin.sf.net/license.html
*/
return array
(
'file' => array
(
'driver' => 'file',
'cache_dir' => '/dev/shm/lnapp',
'default_expire' => 3600,
)
);
?>

View File

@@ -13,7 +13,6 @@
return array(
'cache_type' => 'file',
'client' => '/opt/tivoli/tsm/client/ba/bin/dsmadmc',
'stanza' => '',
'client_errorlogname' => '/tmp/pta-tsm-errorlog.log',
'date_format' => 'd-m-Y',
'tsmpooltypes' => array('PRIMARY','ACTIVEDATA','COPY'),

View File

@@ -28,11 +28,11 @@ return array
*
* Ports and sockets may be appended to the hostname.
*/
'hostname' => 'localhost',
'database' => 'kohana',
//'hostname' => 'localhost', // Unused
'username' => FALSE,
'password' => FALSE,
'persistent' => FALSE,
//'persistent' => FALSE, // Unused
'database' => 'local',
),
'table_prefix' => '',
'charset' => 'utf8',