]> git.pld-linux.org Git - packages/eventum.git/blobdiff - eventum-paths.patch
setup attachments to /var/lib/eventum/storage (if enabled)
[packages/eventum.git] / eventum-paths.patch
index 428ec5636b0e8ed5df4ffe9c3bc79e4f4d5a6240..6baaa0573264fec15e2e6e4b5000baea8aa7c4f2 100644 (file)
  
  if (!defined('SPHINX_LOG_PATH')) {
      define('SPHINX_LOG_PATH', '/var/log/sphinx/');
+--- eventum-3.3.0/src/Attachment/StorageManager.php~   2017-07-19 23:14:28.000000000 +0300
++++ eventum-3.3.0/src/Attachment/StorageManager.php    2017-10-08 15:47:26.170890911 +0300
+@@ -50,7 +50,7 @@
+         $mount_config = [
+             'pdo' => $this->getPdoAdapter(),
+             'legacy' => new Filesystem(new EventumLegacyAdapter()),
+-            'local' => new Filesystem(new Local(APP_PATH . '/var/storage/')),
++            'local' => new Filesystem(new Local('/var/lib/eventum/storage')),
+         ];
+         foreach ($setup['adapters'] as $adapter_name => $adapter_config) {
+--- eventum-3.3.0/contrib/migrate_storage_adapter.php~ 2017-10-05 04:42:47.000000000 +0300
++++ eventum-3.3.0/contrib/migrate_storage_adapter.php  2017-10-08 15:50:45.151352787 +0300
+@@ -124,7 +124,7 @@
+         if ($this->target_adapter === 'local') {
+             // try to set the timestamp on the filesystem to match what is stored in the database
+-            $fs_path = str_replace('local://', APP_PATH . '/var/storage/', $new_path);
++            $fs_path = str_replace('local://', '/var/lib/eventum/storage/', $new_path);
+             $created_date = strtotime($file['iat_created_date']);
+             touch($fs_path, $created_date);
+         }
This page took 0.090263 seconds and 4 git commands to generate.