diff options
author | Jakub Jirutka <jakub@jirutka.cz> | 2016-09-22 16:38:59 +0200 |
---|---|---|
committer | Jakub Jirutka <jakub@jirutka.cz> | 2016-09-22 20:48:29 +0200 |
commit | 8f6e4387fd9ca6b6c266b3b2b0c29b0dea8a275b (patch) | |
tree | e3d9aba1d1f4e9cf108bda30ade365146bd18803 /main/owncloud/owncloud-initscript.post-install | |
parent | 3a3ffbd8e2b0a4b3e1b8fcf62f913a691bb4dae4 (diff) | |
download | aports-8f6e4387fd9ca6b6c266b3b2b0c29b0dea8a275b.tar.bz2 aports-8f6e4387fd9ca6b6c266b3b2b0c29b0dea8a275b.tar.xz |
main/owncloud: add subpackage -initscript for running with php-fpm
Diffstat (limited to 'main/owncloud/owncloud-initscript.post-install')
-rw-r--r-- | main/owncloud/owncloud-initscript.post-install | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/main/owncloud/owncloud-initscript.post-install b/main/owncloud/owncloud-initscript.post-install new file mode 100644 index 0000000000..92db889626 --- /dev/null +++ b/main/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 |