mirror of
https://github.com/vincentmli/bpfire.git
synced 2026-04-25 18:32:57 +02:00
44 lines
2.1 KiB
Bash
44 lines
2.1 KiB
Bash
#!/bin/bash
|
|
############################################################################
|
|
# #
|
|
# This file is part of the IPFire Firewall. #
|
|
# #
|
|
# IPFire is free software; you can redistribute it and/or modify #
|
|
# it under the terms of the GNU General Public License as published by #
|
|
# the Free Software Foundation; either version 2 of the License, or #
|
|
# (at your option) any later version. #
|
|
# #
|
|
# IPFire is distributed in the hope that it will be useful, #
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of #
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the #
|
|
# GNU General Public License for more details. #
|
|
# #
|
|
# You should have received a copy of the GNU General Public License #
|
|
# along with IPFire; if not, write to the Free Software #
|
|
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA #
|
|
# #
|
|
# Copyright (C) 2007 IPFire-Team <info@ipfire.org>. #
|
|
# #
|
|
############################################################################
|
|
#
|
|
. /opt/pakfire/lib/functions.sh
|
|
extract_files
|
|
|
|
# Fix permissions.
|
|
chmod 777 /srv/web/owncloud/apps
|
|
chmod 777 /srv/web/owncloud/config
|
|
|
|
# Create data directory.
|
|
mkdir -p /var/owncloud/data
|
|
chown -R nobody:nobody /var/owncloud
|
|
|
|
# Import web interface certificates if none exist.
|
|
if [ ! -e "/etc/httpd/owncloud.crt" ] && [ ! "/etc/httpd/owncloud.key" ]; then
|
|
cat /etc/httpd/server.crt > /etc/httpd/owncloud.crt
|
|
cat /etc/httpd/server.key > /etc/httpd/owncloud.key
|
|
fi
|
|
|
|
/etc/init.d/apache reload
|
|
|
|
exit 0
|