diff options
Diffstat (limited to 'community/owncloud/owncloud-initscript.post-install')
-rw-r--r-- | community/owncloud/owncloud-initscript.post-install | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/community/owncloud/owncloud-initscript.post-install b/community/owncloud/owncloud-initscript.post-install new file mode 100644 index 0000000000..92db889626 --- /dev/null +++ b/community/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 |