aboutsummaryrefslogtreecommitdiffstats
path: root/unmaintained/owncloud/owncloud-initscript.post-install
diff options
context:
space:
mode:
Diffstat (limited to 'unmaintained/owncloud/owncloud-initscript.post-install')
-rw-r--r--unmaintained/owncloud/owncloud-initscript.post-install22
1 files changed, 22 insertions, 0 deletions
diff --git a/unmaintained/owncloud/owncloud-initscript.post-install b/unmaintained/owncloud/owncloud-initscript.post-install
new file mode 100644
index 0000000000..92db889626
--- /dev/null
+++ b/unmaintained/owncloud/owncloud-initscript.post-install
@@ -0,0 +1,22 @@
+#!/bin/sh
+
+# It's not needed to be writable for www-data group when running with php-fpm.
+for dir in /etc/owncloud \
+ /etc/owncloud/config.php \
+ /var/lib/owncloud/data \
+ /usr/share/webapps/owncloud/apps
+do
+ chmod g-w $dir
+ chown owncloud $dir
+done
+chgrp root /etc/owncloud/config.php
+
+cat <<EOF
+*
+* Point your web server to /run/owncloud/fastcgi.sock and start ownCloud with
+* /etc/init.d/owncloud start. You can modify php-fpm settings in
+* /etc/php5/fpm.d/owncloud.conf.
+*
+EOF
+
+exit 0