]> git.pld-linux.org Git - packages/eventum.git/blame - eventum-paths.patch
Up to 3.10.12
[packages/eventum.git] / eventum-paths.patch
CommitLineData
f71e0b20
ER
1--- eventum-3.10.1/src/Config/Paths.php~ 2020-12-02 23:16:35.000000000 +0200
2+++ eventum-3.10.1/src/Config/Paths.php 2021-03-24 21:56:18.672527936 +0200
3@@ -22,18 +22,16 @@
7d2cac86
ER
4 public const APP_PUBLIC_PATH = APP_PATH . '/htdocs';
5 public const APP_INC_PATH = APP_PATH . '/lib/eventum';
6
7- // "/var" path for writable data
8- private const APP_VAR_PATH = APP_PATH . '/var';
64359d1c 9- public const APP_SPOOL_PATH = self::APP_VAR_PATH . '/spool';
4e8519f7 10- public const APP_CACHE_PATH = self::APP_VAR_PATH . '/cache';
64359d1c 11+ public const APP_SPOOL_PATH = '/var/spool/eventum';
4e8519f7 12+ public const APP_CACHE_PATH = '/var/cache/eventum';
1beb4932 13
4e8519f7
ER
14 // define other paths
15 public const APP_TPL_PATH = APP_PATH . '/templates';
16 public const APP_TPL_COMPILE_PATH = self::APP_CACHE_PATH . '/smarty';
17- public const APP_LOG_PATH = self::APP_VAR_PATH . '/log';
4e8519f7 18- public const APP_LOCKS_PATH = self::APP_VAR_PATH . '/lock';
64359d1c 19+ public const APP_LOG_PATH = '/var/log/eventum';
4e8519f7
ER
20+ public const APP_LOCKS_PATH = '/var/run/eventum';
21
22 // fonts directory for phplot
23- public const APP_FONTS_PATH = APP_PATH . '/vendor/fonts/liberation';
24+ public const APP_FONTS_PATH = '/usr/share/fonts/TTF';
56ec18ac 25 public const APP_HELP_PATH = APP_PATH . '/docs/help';
4e8519f7 26 }
82e51615
ER
27--- eventum-3.9.11.org/src/Setup/Requirements.php 2020-08-01 20:21:08.000000000 +0200
28+++ eventum-3.9.11/src/Setup/Requirements.php 2021-03-10 15:18:12.361997906 +0100
29@@ -69,10 +69,6 @@ class Requirements
30 $privateKeyPath = Setup::getPrivateKeyPath();
290540fe 31 $setupFile = Setup::getSetupFile();
abac5638 32
290540fe 33- $error = $this->checkPermissions($configPath, "Directory '" . $configPath . "'", true);
1beb4932
ER
34- if (!empty($error)) {
35- $errors[] = $error;
36- }
290540fe 37 $error = $this->checkPermissions($setupFile, "File '" . $setupFile . "'");
1beb4932
ER
38 if (!empty($error)) {
39 $errors[] = $error;
9913db86
ER
40--- eventum-3.9.0/src/Console/Command/MonitorCommand.php~ 2019-10-21 22:17:43.000000000 +0300
41+++ eventum-3.9.0/src/Console/Command/MonitorCommand.php 2020-07-02 00:40:16.042698823 +0300
42@@ -68,9 +68,9 @@
290540fe 43 $required_files = [
290540fe 44 $configPath . '/setup.php' => [
549721ab
ER
45 'check_owner' => true,
46- 'owner' => 'apache',
9913db86 47+ 'owner' => 'http',
549721ab
ER
48 'check_group' => true,
49- 'group' => 'apache',
50+ 'group' => 'http',
51 'check_permission' => true,
52 'permission' => 660,
53 'check_filesize' => true,
82e51615
ER
54--- eventum-3.9.11.org/config/sphinx.conf.php 2020-05-05 08:20:33.000000000 +0200
55+++ eventum-3.9.11/config/sphinx.conf.php 2021-03-10 15:18:12.361997906 +0100
56@@ -4,7 +4,7 @@
57 use Eventum\Config\SphinxConfig;
58 use Eventum\ServiceContainer;
9d207070 59
cb60690e 60-require_once __DIR__ . '/../init.php';
858c6f2a
ER
61+require_once '/usr/share/eventum/init.php';
62
82e51615
ER
63 /** @var SphinxConfig $config */
64 $config = ServiceContainer::get(SphinxConfig::class);
4e8519f7
ER
65--- eventum-3.7.4-440-gcc5ad3db5/src/Attachment/StorageManager.php~ 2019-08-11 22:49:07.000000000 +0300
66+++ eventum-3.7.4-440-gcc5ad3db5/src/Attachment/StorageManager.php 2019-08-21 23:33:19.325911295 +0300
67@@ -33,7 +33,7 @@
9dd475ab
ER
68 *
69 * @var string
70 */
4e8519f7
ER
71- private const STORAGE_PATH = Paths::APP_PATH . '/var/storage/';
72+ private const STORAGE_PATH = '/var/lib/eventum/storage/';
ac6bab4c 73
9dd475ab
ER
74 /**
75 * @var MountManager
This page took 0.068212 seconds and 5 git commands to generate.