diff options
author | Max Rees <maxcrees@me.com> | 2018-11-19 19:15:15 -0500 |
---|---|---|
committer | Max Rees <maxcrees@me.com> | 2018-11-19 19:15:15 -0500 |
commit | 020a30d93a101127fdd2f494026fc80c632ae728 (patch) | |
tree | 70afe4522257b7b7ef78329f2919f7b364e18d65 /user/nextcloud/nextcloud14-dont-chmod.patch | |
parent | 3a06f7cc492260836cd9910e2509aec9f0ba3d54 (diff) | |
download | packages-020a30d93a101127fdd2f494026fc80c632ae728.tar.gz packages-020a30d93a101127fdd2f494026fc80c632ae728.tar.bz2 packages-020a30d93a101127fdd2f494026fc80c632ae728.tar.xz packages-020a30d93a101127fdd2f494026fc80c632ae728.zip |
user/nextcloud: new package
Diffstat (limited to 'user/nextcloud/nextcloud14-dont-chmod.patch')
-rw-r--r-- | user/nextcloud/nextcloud14-dont-chmod.patch | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/user/nextcloud/nextcloud14-dont-chmod.patch b/user/nextcloud/nextcloud14-dont-chmod.patch new file mode 100644 index 000000000..13b5e3efb --- /dev/null +++ b/user/nextcloud/nextcloud14-dont-chmod.patch @@ -0,0 +1,44 @@ +--- a/lib/private/Config.php ++++ b/lib/private/Config.php +@@ -240,9 +240,6 @@ + touch ($this->configFilePath); + $filePointer = fopen($this->configFilePath, 'r+'); + +- // Prevent others not to read the config +- chmod($this->configFilePath, 0640); +- + // File does not exist, this can happen when doing a fresh install + if(!is_resource ($filePointer)) { + // TODO fix this via DI once it is very clear that this doesn't cause side effects due to initialization order +--- a/lib/private/Log/File.php ++++ b/lib/private/Log/File.php +@@ -134,9 +134,6 @@ + } + $entry = json_encode($entry, JSON_PARTIAL_OUTPUT_ON_ERROR); + $handle = @fopen($this->logFile, 'a'); +- if ((fileperms($this->logFile) & 0777) != 0640) { +- @chmod($this->logFile, 0640); +- } + if ($handle) { + fwrite($handle, $entry."\n"); + fclose($handle); +--- a/lib/private/TempManager.php ++++ b/lib/private/TempManager.php +@@ -95,7 +95,6 @@ + if($postFix !== '') { + $fileNameWithPostfix = $this->buildFileNameWithSuffix($file, $postFix); + touch($fileNameWithPostfix); +- chmod($fileNameWithPostfix, 0600); + $this->current[] = $fileNameWithPostfix; + return $fileNameWithPostfix; + } +--- a/lib/private/legacy/util.php ++++ b/lib/private/legacy/util.php +@@ -1008,7 +1008,6 @@ + . ' cannot be listed by other users.'); + $perms = substr(decoct(@fileperms($dataDirectory)), -3); + if (substr($perms, -1) !== '0') { +- chmod($dataDirectory, 0770); + clearstatcache(); + $perms = substr(decoct(@fileperms($dataDirectory)), -3); + if ($perms[2] !== '0') { |