aboutsummaryrefslogtreecommitdiffstats
path: root/testing/nextcloud/nextcloud-9-disable-chmod.patch
diff options
context:
space:
mode:
authorLeonardo Arena <rnalrd@alpinelinux.org>2016-06-14 14:45:20 +0000
committerLeonardo Arena <rnalrd@alpinelinux.org>2016-06-14 14:55:58 +0000
commit4e14b826e5a58c2941f179605471dc4d39b0bc42 (patch)
tree5fde5c71f1d140945a613c721df8c514a1d3841f /testing/nextcloud/nextcloud-9-disable-chmod.patch
parent51b7254ef254dbd0f031953ff38aab77302a42f3 (diff)
downloadaports-4e14b826e5a58c2941f179605471dc4d39b0bc42.tar.bz2
aports-4e14b826e5a58c2941f179605471dc4d39b0bc42.tar.xz
testing/nextcloud: new aport
Next-generation personal cloud service
Diffstat (limited to 'testing/nextcloud/nextcloud-9-disable-chmod.patch')
-rw-r--r--testing/nextcloud/nextcloud-9-disable-chmod.patch12
1 files changed, 12 insertions, 0 deletions
diff --git a/testing/nextcloud/nextcloud-9-disable-chmod.patch b/testing/nextcloud/nextcloud-9-disable-chmod.patch
new file mode 100644
index 0000000000..bd70391c81
--- /dev/null
+++ b/testing/nextcloud/nextcloud-9-disable-chmod.patch
@@ -0,0 +1,12 @@
+--- a/lib/private/config.php
++++ b/lib/private/config.php
+@@ -229,7 +229,8 @@
+ $filePointer = fopen($this->configFilePath, 'r+');
+
+ // Prevent others not to read the config
+- chmod($this->configFilePath, 0640);
++ // Alpine Linux Development - don't do package's job
++ // chmod($this->configFilePath, 0640);
+
+ // File does not exist, this can happen when doing a fresh install
+ if(!is_resource ($filePointer)) {