blob: 3be99645fbb29bd45625edce7706d27f02e72041 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
<?php
/**
* RPM default configuration
*
* Modifying this file in-place is not recommended, because
* changes will be overwritten during package upgrades.
*
* If you want to customize the behaviour, the best way is to
* create and use the /etc/glpi/local_define.php file.
*
**/
// Config
define('GLPI_CONFIG_DIR', '/etc/glpi');
if (file_exists(GLPI_CONFIG_DIR . '/local_define.php')) {
require_once GLPI_CONFIG_DIR . '/local_define.php';
}
// Runtime Data
defined('GLPI_VAR_DIR') or define('GLPI_VAR_DIR', '/var/lib/glpi/files');
// Log
defined('GLPI_LOG_DIR') or define('GLPI_LOG_DIR', '/var/log/glpi');
// System libraries
define('GLPI_HTMLAWED', '/usr/share/php/htmLawed/htmLawed.php');
// Fonts
define('GLPI_FONT_FREESANS', '/usr/share/fonts/gnu-free/FreeSans.ttf');
// Use system cron
define('GLPI_SYSTEM_CRON', true);
// Packaging
define('GLPI_INSTALL_MODE', 'RPM');
|