aboutsummaryrefslogtreecommitdiffstats
path: root/community/nextcloud/nextcloud10-dont-chmod.patch
diff options
context:
space:
mode:
authorLeonardo Arena <rnalrd@alpinelinux.org>2018-09-10 12:48:06 +0000
committerLeonardo Arena <rnalrd@alpinelinux.org>2018-09-10 12:48:11 +0000
commit47f79cb6dea41ead16e5daa05f35f83d99499b04 (patch)
tree8108ccb721e469a59ff3f5905a53ca91c9459fb5 /community/nextcloud/nextcloud10-dont-chmod.patch
parent38d8a7c2ca995bf1fc1c310303941fcad35ae429 (diff)
downloadaports-47f79cb6dea41ead16e5daa05f35f83d99499b04.tar.bz2
aports-47f79cb6dea41ead16e5daa05f35f83d99499b04.tar.xz
community/nextcloud: upgrade to 14.0.0
Diffstat (limited to 'community/nextcloud/nextcloud10-dont-chmod.patch')
-rw-r--r--community/nextcloud/nextcloud10-dont-chmod.patch44
1 files changed, 0 insertions, 44 deletions
diff --git a/community/nextcloud/nextcloud10-dont-chmod.patch b/community/nextcloud/nextcloud10-dont-chmod.patch
deleted file mode 100644
index 0a3b11975e..0000000000
--- a/community/nextcloud/nextcloud10-dont-chmod.patch
+++ /dev/null
@@ -1,44 +0,0 @@
---- a/lib/private/Config.php
-+++ b/lib/private/Config.php
-@@ -229,9 +229,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
-@@ -130,9 +130,6 @@
- }
- $entry = json_encode($entry, JSON_PARTIAL_OUTPUT_ON_ERROR);
- $handle = @fopen(self::$logFile, 'a');
-- if ((fileperms(self::$logFile) & 0777) != 0640) {
-- @chmod(self::$logFile, 0640);
-- }
- if ($handle) {
- fwrite($handle, $entry."\n");
- fclose($handle);
---- a/lib/private/TempManager.php
-+++ b/lib/private/TempManager.php
-@@ -94,7 +94,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
-@@ -965,7 +965,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') {