]> git.pld-linux.org Git - packages/eventum.git/blob - eventum-paths.patch
up to 3.5.6-67-g26f3e1f3
[packages/eventum.git] / eventum-paths.patch
1 --- eventum-3.3.4-365-g65c5538f/globals.php~    2018-03-13 10:49:12.000000000 +0200
2 +++ eventum-3.3.4-365-g65c5538f/globals.php     2018-03-13 23:22:58.153814696 +0200
3 @@ -22,7 +22,7 @@
4  
5  // define other paths
6  define('APP_TPL_PATH', APP_PATH . '/templates');
7 -define('APP_TPL_COMPILE_PATH', APP_VAR_PATH . '/cache');
8 -define('APP_LOG_PATH', APP_VAR_PATH . '/log');
9 +define('APP_TPL_COMPILE_PATH', '/var/cache/eventum');
10 +define('APP_LOG_PATH', '/var/log/eventum');
11  define('APP_ERROR_LOG', APP_LOG_PATH . '/errors.log');
12 -define('APP_LOCKS_PATH', APP_VAR_PATH . '/lock');
13 +define('APP_LOCKS_PATH', '/var/run/eventum');
14 --- eventum-3.5.6-98-g5b87d2b0/src/Setup/Requirements.php~      2019-01-23 01:50:42.000000000 +0200
15 +++ eventum-3.5.6-98-g5b87d2b0/src/Setup/Requirements.php       2019-01-24 22:18:56.047816296 +0200
16 @@ -64,10 +64,6 @@
17          $configPath = Setup::getConfigPath();
18          $setupFile = Setup::getSetupFile();
19  
20 -        $error = $this->checkPermissions($configPath, "Directory '" . $configPath . "'", true);
21 -        if (!empty($error)) {
22 -            $errors[] = $error;
23 -        }
24          $error = $this->checkPermissions($setupFile, "File '" . $setupFile . "'");
25          if (!empty($error)) {
26              $errors[] = $error;
27 --- eventum-3.5.0/src/Console/Command/MonitorCommand.php~       2018-05-20 17:33:34.000000000 +0300
28 +++ eventum-3.5.0/src/Console/Command/MonitorCommand.php        2018-05-21 01:42:21.463354763 +0300
29 @@ -47,17 +47,17 @@
30          $required_files = [
31              $configPath . '/config.php' => [
32                  'check_owner' => true,
33 -                'owner' => 'apache',
34 +                'owner' => 'root',
35                  'check_group' => true,
36 -                'group' => 'apache',
37 +                'group' => 'http',
38                  'check_permission' => true,
39                  'permission' => 640,
40              ],
41              $configPath . '/setup.php' => [
42                  'check_owner' => true,
43 -                'owner' => 'apache',
44 +                'owner' => 'root',
45                  'check_group' => true,
46 -                'group' => 'apache',
47 +                'group' => 'http',
48                  'check_permission' => true,
49                  'permission' => 660,
50                  'check_filesize' => true,
51 --- eventum-3.1.5/config/sphinx.conf.php~       2016-11-13 12:05:37.000000000 +0200
52 +++ eventum-3.1.5/config/sphinx.conf.php        2016-11-23 03:10:05.855040510 +0200
53 @@ -1,7 +1,7 @@
54  #!/usr/bin/php
55  <?php
56  
57 -require_once __DIR__ . '/../init.php';
58 +require_once '/usr/share/eventum/init.php';
59  
60  if (!defined('SPHINX_LOG_PATH')) {
61      define('SPHINX_LOG_PATH', '/var/log/sphinx/');
62 --- eventum-3.3.1/src/Attachment/StorageManager.php~    2017-10-08 15:53:56.000000000 +0300
63 +++ eventum-3.3.1/src/Attachment/StorageManager.php     2017-10-09 23:22:00.162142738 +0300
64 @@ -32,7 +32,7 @@
65       *
66       * @var string
67       */
68 -    const STORAGE_PATH = APP_PATH . '/var/storage/';
69 +    const STORAGE_PATH = '/var/lib/eventum/storage/';
70  
71      /**
72       * @var MountManager
This page took 0.037288 seconds and 4 git commands to generate.