An error occurred while loading the file. Please try again.
-
Benoit Mortier authoredea491f8a
<?php
require_once('variables_common.inc');
/*! \file
* Define common locations and variables
* Generated by fusiondirectory-setup */
if(!defined("CONFIG_DIR")){
define ("CONFIG_DIR", "/etc/fusiondirectory"); /* FusionDirectory etc path */
}
/* Allow setting the config file in the apache configuration
e.g. SetEnv CONFIG_FILE fusiondirectory.conf 1.0
*/
if(!defined("CONFIG_FILE")){
define ("CONFIG_FILE", "fusiondirectory.conf"); /* FusionDirectory filename */
}
/* Smarty compile dir */
define ("SPOOL_DIR","/var/spool/fusiondirectory"); /* FusionDirectory spool directory */
/* Global cache dir */
define ("CACHE_DIR","/var/cache/fusiondirectory"); /* FusionDirectory var directory */
/* Global locale cache dir */
define ("LOCALE_DIR", "/var/cache/fusiondirectory/locale"); /* FusionDirectory locale directory */
/* Global tmp dir */
define ("TEMP_DIR", "/var/cache/fusiondirectory/tmp"); /* FusionDirectory tmp directory */
/* Directory containing the configuration template */
define ("CONFIG_TEMPLATE_DIR", "/var/cache/fusiondirectory/template"); /* FusionDirectory template directory */
/* Directory containing the fai logs */
define ("FAI_LOG_DIR", "/var/cache/fusiondirectory/fai"); /* FusionDirectory fai directory */
/* Directory containing the vacation files */
define ("VACATION_DIR", "/var/cache/fusiondirectory/vacation/"); /* FusionDirectory vacation directory */
/* name of the class.cache file */
define("CLASS_CACHE", "class.cache"); /* name of the class cache */
?>