This repository has been archived on 2024-04-08. You can view files and clone it, but cannot push or open issues or pull requests.
phptsmadmin/application/config/config.php

40 lines
1.4 KiB
PHP
Raw Normal View History

2011-03-03 23:06:18 +00:00
<?php defined('SYSPATH') or die('No direct access allowed.');
/**
* PTA system default configurable items.
*
* @package PTA
* @category Configuration
* @author Deon George
* @copyright (c) 2010 phpTSMadmin Development Team
* @license http://phptsmadmin.sf.net/license.html
*/
return array(
'cache_type' => 'file',
'cache' => 'apc',
'cache_time' => 86400,
2011-03-03 23:06:18 +00:00
'client' => '/opt/tivoli/tsm/client/ba/bin/dsmadmc',
2012-11-26 05:57:18 +00:00
'client_type' => 'dsmadmc',
2011-03-03 23:06:18 +00:00
'client_errorlogname' => '/tmp/pta-tsm-errorlog.log',
'date_format' => 'd-m-Y',
2012-11-28 02:34:39 +00:00
'tsmdatatypes' => array('Bkup'=>'BACKUP','Arch'=>'ARCHIVE','SpMg'=>'SPACE MANAGED'),
2011-06-27 04:37:11 +00:00
'tsmdbtypes' => array('BACKUPFULL','BACKUPINCR','DBSNAPSHOT'),
'tsmpooltypes' => array('PRIMARY','ACTIVEDATA','COPY'),
'tsmvolstatus' => array('FULL','FILLING','PENDING','EMPTY'),
'tsmtapeage' => 180, // Age of tapes before prompting to rotate
2011-03-03 23:06:18 +00:00
'email_admin_only'=> array(
'method'=>array('wurley@users.sf.net'=>'Deon George'),
),
'method_directory'=> array( // Out method paths for the different functions
),
'method_security' => TRUE, // Enables Method Security. Setting to false means any method can be run without authentication
'site' => array(
2012-11-26 05:57:18 +00:00
'mode' => Kohana::PRODUCTION,
2011-03-03 23:06:18 +00:00
),
'site_debug' => FALSE,
2012-11-26 05:57:18 +00:00
'site_name' => 'phpTSMadmin',
'theme' => 'yaml',
2011-03-03 23:06:18 +00:00
);
?>