2014-08-15 22:29:05 +00:00
|
|
|
#!/bin/bash
|
2014-08-11 14:24:29 +00:00
|
|
|
# Owncloud
|
|
|
|
##########################
|
|
|
|
|
|
|
|
source setup/functions.sh # load our functions
|
|
|
|
source /etc/mailinabox.conf # load global vars
|
|
|
|
|
2014-09-21 20:05:11 +00:00
|
|
|
# ### Installing ownCloud
|
|
|
|
|
2015-08-19 19:58:35 +00:00
|
|
|
echo "Installing ownCloud (contacts/calendar)..."
|
|
|
|
|
2014-08-11 14:24:29 +00:00
|
|
|
apt_install \
|
|
|
|
dbconfig-common \
|
2014-08-11 15:59:04 +00:00
|
|
|
php5-cli php5-sqlite php5-gd php5-imap php5-curl php-pear php-apc curl libapr1 libtool libcurl4-openssl-dev php-xml-parser \
|
2015-08-16 23:46:23 +00:00
|
|
|
php5 php5-dev php5-gd php5-fpm memcached php5-memcached unzip
|
2014-08-11 14:24:29 +00:00
|
|
|
|
|
|
|
apt-get purge -qq -y owncloud*
|
|
|
|
|
2014-09-21 20:05:11 +00:00
|
|
|
# Install ownCloud from source of this version:
|
2015-08-12 11:05:51 +00:00
|
|
|
owncloud_ver=8.1.1
|
|
|
|
owncloud_hash=34077e78575a3e689825a00964ee37fbf83fbdda
|
2014-09-01 08:02:46 +00:00
|
|
|
|
2015-06-14 15:42:32 +00:00
|
|
|
# Migrate <= v0.10 setups that stored the ownCloud config.php in /usr/local rather than
|
|
|
|
# in STORAGE_ROOT. Move the file to STORAGE_ROOT.
|
2015-06-12 12:53:02 +00:00
|
|
|
if [ ! -f $STORAGE_ROOT/owncloud/config.php ] \
|
|
|
|
&& [ -f /usr/local/lib/owncloud/config/config.php ]; then
|
|
|
|
|
2015-06-14 15:42:32 +00:00
|
|
|
# Move config.php and symlink back into previous location.
|
|
|
|
echo "Migrating owncloud/config.php to new location."
|
|
|
|
mv /usr/local/lib/owncloud/config/config.php $STORAGE_ROOT/owncloud/config.php \
|
|
|
|
&& \
|
2015-06-12 12:53:02 +00:00
|
|
|
ln -sf $STORAGE_ROOT/owncloud/config.php /usr/local/lib/owncloud/config/config.php
|
|
|
|
fi
|
|
|
|
|
2014-09-01 08:32:44 +00:00
|
|
|
# Check if ownCloud dir exist, and check if version matches owncloud_ver (if either doesn't - install/upgrade)
|
2014-09-01 08:02:46 +00:00
|
|
|
if [ ! -d /usr/local/lib/owncloud/ ] \
|
|
|
|
|| ! grep -q $owncloud_ver /usr/local/lib/owncloud/version.php; then
|
|
|
|
|
2015-06-24 12:06:01 +00:00
|
|
|
# Download and verify
|
|
|
|
wget_verify https://download.owncloud.org/community/owncloud-$owncloud_ver.zip $owncloud_hash /tmp/owncloud.zip
|
|
|
|
|
2015-02-12 19:53:17 +00:00
|
|
|
# Clear out the existing ownCloud.
|
2015-06-24 12:06:01 +00:00
|
|
|
if [ -d /usr/local/lib/owncloud/ ]; then
|
2015-02-12 19:53:17 +00:00
|
|
|
echo "upgrading ownCloud to $owncloud_ver (backing up existing ownCloud directory to /tmp/owncloud-backup-$$)..."
|
|
|
|
mv /usr/local/lib/owncloud /tmp/owncloud-backup-$$
|
|
|
|
fi
|
|
|
|
|
2015-06-24 12:06:01 +00:00
|
|
|
# Extract ownCloud
|
2014-09-01 08:02:46 +00:00
|
|
|
unzip -u -o -q /tmp/owncloud.zip -d /usr/local/lib #either extracts new or replaces current files
|
|
|
|
rm -f /tmp/owncloud.zip
|
2015-02-12 19:53:17 +00:00
|
|
|
|
|
|
|
# The two apps we actually want are not in ownCloud core. Clone them from
|
|
|
|
# their github repositories.
|
|
|
|
mkdir -p /usr/local/lib/owncloud/apps
|
2015-08-12 19:05:46 +00:00
|
|
|
git_clone https://github.com/owncloud/contacts 4ff855e7c2075309041bead09fbb9eb7df678244 '' /usr/local/lib/owncloud/apps/contacts
|
|
|
|
git_clone https://github.com/owncloud/calendar ec53139b144c0f842c33813305612e8006c42ea5 '' /usr/local/lib/owncloud/apps/calendar
|
2015-02-12 19:53:17 +00:00
|
|
|
|
|
|
|
# Fix weird permissions.
|
|
|
|
chmod 750 /usr/local/lib/owncloud/{apps,config}
|
|
|
|
|
2015-06-14 15:42:32 +00:00
|
|
|
# Create a symlink to the config.php in STORAGE_ROOT (for upgrades we're restoring the symlink we previously
|
|
|
|
# put in, and in new installs we're creating a symlink and will create the actual config later).
|
2015-06-12 12:53:02 +00:00
|
|
|
ln -sf $STORAGE_ROOT/owncloud/config.php /usr/local/lib/owncloud/config/config.php
|
2015-02-12 19:53:17 +00:00
|
|
|
|
|
|
|
# Make sure permissions are correct or the upgrade step won't run.
|
|
|
|
# $STORAGE_ROOT/owncloud may not yet exist, so use -f to suppress
|
|
|
|
# that error.
|
|
|
|
chown -f -R www-data.www-data $STORAGE_ROOT/owncloud /usr/local/lib/owncloud
|
|
|
|
|
2015-08-19 19:43:34 +00:00
|
|
|
# If this isn't a new installation, immediately run the upgrade script.
|
|
|
|
# Then check for success (0=ok and 3=no upgrade needed, both are success).
|
|
|
|
if [ -f $STORAGE_ROOT/owncloud/owncloud.db ]; then
|
2015-08-23 16:37:25 +00:00
|
|
|
# ownCloud 8.1.1 broke upgrades. It may fail on the first attempt, but
|
|
|
|
# that can be OK.
|
2015-08-19 19:43:34 +00:00
|
|
|
sudo -u www-data php /usr/local/lib/owncloud/occ upgrade
|
2015-08-23 16:37:25 +00:00
|
|
|
if [ \( $? -ne 0 \) -a \( $? -ne 3 \) ]; then
|
|
|
|
echo "Trying ownCloud upgrade again to work around ownCloud upgrade bug..."
|
|
|
|
sudo -u www-data php /usr/local/lib/owncloud/occ upgrade
|
|
|
|
if [ \( $? -ne 0 \) -a \( $? -ne 3 \) ]; then exit 1; fi
|
|
|
|
sudo -u www-data php /usr/local/lib/owncloud/occ maintenance:mode --off
|
|
|
|
echo "...which seemed to work."
|
|
|
|
fi
|
2015-08-19 19:43:34 +00:00
|
|
|
fi
|
2014-08-11 14:24:29 +00:00
|
|
|
fi
|
|
|
|
|
2014-09-21 20:05:11 +00:00
|
|
|
# ### Configuring ownCloud
|
|
|
|
|
2014-08-16 12:38:03 +00:00
|
|
|
# Setup ownCloud if the ownCloud database does not yet exist. Running setup when
|
|
|
|
# the database does exist wipes the database and user data.
|
|
|
|
if [ ! -f $STORAGE_ROOT/owncloud/owncloud.db ]; then
|
2015-06-12 12:53:02 +00:00
|
|
|
# Create user data directory
|
|
|
|
mkdir -p $STORAGE_ROOT/owncloud
|
|
|
|
|
2015-08-30 21:14:00 +00:00
|
|
|
# Create an initial configuration file.
|
2014-09-21 20:05:11 +00:00
|
|
|
TIMEZONE=$(cat /etc/timezone)
|
2014-08-16 12:38:03 +00:00
|
|
|
instanceid=oc$(echo $PRIMARY_HOSTNAME | sha1sum | fold -w 10 | head -n 1)
|
2015-06-12 12:53:02 +00:00
|
|
|
cat > $STORAGE_ROOT/owncloud/config.php <<EOF;
|
2014-08-11 15:53:01 +00:00
|
|
|
<?php
|
2014-08-12 10:01:18 +00:00
|
|
|
\$CONFIG = array (
|
2014-08-11 23:15:17 +00:00
|
|
|
'datadirectory' => '$STORAGE_ROOT/owncloud',
|
2014-08-12 13:25:38 +00:00
|
|
|
|
|
|
|
'instanceid' => '$instanceid',
|
2014-08-15 23:07:20 +00:00
|
|
|
|
2014-08-13 19:27:14 +00:00
|
|
|
'forcessl' => true, # if unset/false, ownCloud sends a HSTS=0 header, which conflicts with nginx config
|
2014-08-12 13:25:38 +00:00
|
|
|
|
|
|
|
'overwritewebroot' => '/cloud',
|
2015-08-16 23:47:51 +00:00
|
|
|
'overwrite.cli.url' => '/cloud',
|
2014-08-12 10:33:42 +00:00
|
|
|
'user_backends' => array(
|
|
|
|
array(
|
|
|
|
'class'=>'OC_User_IMAP',
|
|
|
|
'arguments'=>array('{localhost:993/imap/ssl/novalidate-cert}')
|
|
|
|
)
|
2014-08-11 23:15:17 +00:00
|
|
|
),
|
2015-08-16 23:46:23 +00:00
|
|
|
'memcache.local' => '\\OC\\Memcache\\Memcached',
|
2014-08-11 23:15:17 +00:00
|
|
|
"memcached_servers" => array (
|
|
|
|
array('localhost', 11211),
|
|
|
|
),
|
2014-08-12 11:18:45 +00:00
|
|
|
'mail_smtpmode' => 'sendmail',
|
|
|
|
'mail_smtpsecure' => '',
|
2014-08-12 08:09:44 +00:00
|
|
|
'mail_smtpauthtype' => 'LOGIN',
|
2014-08-12 11:18:45 +00:00
|
|
|
'mail_smtpauth' => false,
|
|
|
|
'mail_smtphost' => '',
|
|
|
|
'mail_smtpport' => '',
|
|
|
|
'mail_smtpname' => '',
|
|
|
|
'mail_smtppassword' => '',
|
|
|
|
'mail_from_address' => 'owncloud',
|
|
|
|
'mail_domain' => '$PRIMARY_HOSTNAME',
|
2014-08-12 10:01:18 +00:00
|
|
|
'logtimezone' => '$TIMEZONE',
|
2014-08-11 23:15:17 +00:00
|
|
|
);
|
2014-08-11 21:01:18 +00:00
|
|
|
?>
|
2014-08-11 15:53:01 +00:00
|
|
|
EOF
|
2014-08-12 08:10:53 +00:00
|
|
|
|
2014-08-16 12:38:03 +00:00
|
|
|
# Create an auto-configuration file to fill in database settings
|
|
|
|
# when the install script is run. Make an administrator account
|
|
|
|
# here or else the install can't finish.
|
2015-11-17 22:13:49 +00:00
|
|
|
adminpassword=$(dd if=/dev/urandom bs=1 count=40 2>/dev/null | sha1sum | fold -w 30 | head -n 1)
|
2014-09-21 20:05:11 +00:00
|
|
|
cat > /usr/local/lib/owncloud/config/autoconfig.php <<EOF;
|
2014-08-15 23:07:20 +00:00
|
|
|
<?php
|
|
|
|
\$AUTOCONFIG = array (
|
|
|
|
# storage/database
|
|
|
|
'directory' => '$STORAGE_ROOT/owncloud',
|
|
|
|
'dbtype' => 'sqlite3',
|
|
|
|
|
|
|
|
# create an administrator account with a random password so that
|
|
|
|
# the user does not have to enter anything on first load of ownCloud
|
|
|
|
'adminlogin' => 'root',
|
|
|
|
'adminpass' => '$adminpassword',
|
|
|
|
);
|
|
|
|
?>
|
|
|
|
EOF
|
|
|
|
|
2015-06-12 12:53:02 +00:00
|
|
|
# Set permissions
|
2014-08-16 12:38:03 +00:00
|
|
|
chown -R www-data.www-data $STORAGE_ROOT/owncloud /usr/local/lib/owncloud
|
2014-08-11 14:24:29 +00:00
|
|
|
|
2014-08-16 12:38:03 +00:00
|
|
|
# Execute ownCloud's setup step, which creates the ownCloud sqlite database.
|
2015-06-14 15:42:32 +00:00
|
|
|
# It also wipes it if it exists. And it updates config.php with database
|
|
|
|
# settings and deletes the autoconfig.php file.
|
2014-08-16 12:38:03 +00:00
|
|
|
(cd /usr/local/lib/owncloud; sudo -u www-data php /usr/local/lib/owncloud/index.php;)
|
|
|
|
fi
|
2014-08-15 23:07:20 +00:00
|
|
|
|
2015-08-30 21:14:00 +00:00
|
|
|
# Update config.php.
|
|
|
|
# * trusted_domains is reset to localhost by autoconfig starting with ownCloud 8.1.1,
|
|
|
|
# so set it here. It also can change if the box's PRIMARY_HOSTNAME changes, so
|
|
|
|
# this will make sure it has the right value.
|
|
|
|
# * Some settings weren't included in previous versions of Mail-in-a-Box.
|
|
|
|
# Use PHP to read the settings file, modify it, and write out the new settings array.
|
2015-08-16 23:46:23 +00:00
|
|
|
CONFIG_TEMP=$(/bin/mktemp)
|
|
|
|
php <<EOF > $CONFIG_TEMP && mv $CONFIG_TEMP $STORAGE_ROOT/owncloud/config.php;
|
|
|
|
<?php
|
|
|
|
include("$STORAGE_ROOT/owncloud/config.php");
|
2015-08-30 21:14:00 +00:00
|
|
|
|
|
|
|
\$CONFIG['trusted_domains'] = array('$PRIMARY_HOSTNAME');
|
|
|
|
|
2015-08-16 23:46:23 +00:00
|
|
|
\$CONFIG['memcache.local'] = '\\OC\\Memcache\\Memcached';
|
2015-08-16 23:47:51 +00:00
|
|
|
\$CONFIG['overwrite.cli.url'] = '/cloud';
|
2015-11-05 11:20:16 +00:00
|
|
|
\$CONFIG['mail_from_address'] = 'administrator'; # just the local part, matches our master administrator address
|
2015-08-30 21:14:00 +00:00
|
|
|
|
2015-08-16 23:46:23 +00:00
|
|
|
echo "<?php\n\\\$CONFIG = ";
|
|
|
|
var_export(\$CONFIG);
|
|
|
|
echo ";";
|
|
|
|
?>
|
|
|
|
EOF
|
|
|
|
chown www-data.www-data $STORAGE_ROOT/owncloud/config.php
|
|
|
|
|
2014-08-15 23:07:20 +00:00
|
|
|
# Enable/disable apps. Note that this must be done after the ownCloud setup.
|
|
|
|
# The firstrunwizard gave Josh all sorts of problems, so disabling that.
|
2015-02-12 19:53:17 +00:00
|
|
|
# user_external is what allows ownCloud to use IMAP for login. The contacts
|
|
|
|
# and calendar apps are the extensions we really care about here.
|
|
|
|
hide_output sudo -u www-data php /usr/local/lib/owncloud/console.php app:disable firstrunwizard
|
|
|
|
hide_output sudo -u www-data php /usr/local/lib/owncloud/console.php app:enable user_external
|
|
|
|
hide_output sudo -u www-data php /usr/local/lib/owncloud/console.php app:enable contacts
|
|
|
|
hide_output sudo -u www-data php /usr/local/lib/owncloud/console.php app:enable calendar
|
2014-08-15 23:07:20 +00:00
|
|
|
|
2015-07-19 13:05:04 +00:00
|
|
|
# When upgrading, run the upgrade script again now that apps are enabled. It seems like
|
|
|
|
# the first upgrade at the top won't work because apps may be disabled during upgrade?
|
|
|
|
# Check for success (0=ok, 3=no upgrade needed).
|
|
|
|
sudo -u www-data php /usr/local/lib/owncloud/occ upgrade
|
|
|
|
if [ \( $? -ne 0 \) -a \( $? -ne 3 \) ]; then exit 1; fi
|
2015-07-17 11:29:28 +00:00
|
|
|
|
2014-08-12 12:00:28 +00:00
|
|
|
# Set PHP FPM values to support large file uploads
|
2014-08-15 22:29:05 +00:00
|
|
|
# (semicolon is the comment character in this file, hashes produce deprecation warnings)
|
|
|
|
tools/editconf.py /etc/php5/fpm/php.ini -c ';' \
|
2014-08-12 12:00:28 +00:00
|
|
|
upload_max_filesize=16G \
|
|
|
|
post_max_size=16G \
|
|
|
|
output_buffering=16384 \
|
2014-08-13 05:30:32 +00:00
|
|
|
memory_limit=512M \
|
|
|
|
max_execution_time=600 \
|
|
|
|
short_open_tag=On
|
2014-08-12 12:00:28 +00:00
|
|
|
|
2014-08-16 13:00:36 +00:00
|
|
|
# Set up a cron job for owncloud.
|
|
|
|
cat > /etc/cron.hourly/mailinabox-owncloud << EOF;
|
|
|
|
#!/bin/bash
|
|
|
|
# Mail-in-a-Box
|
|
|
|
sudo -u www-data php -f /usr/local/lib/owncloud/cron.php
|
|
|
|
EOF
|
|
|
|
chmod +x /etc/cron.hourly/mailinabox-owncloud
|
2014-08-12 07:24:49 +00:00
|
|
|
|
2014-09-21 20:05:11 +00:00
|
|
|
# There's nothing much of interest that a user could do as an admin for ownCloud,
|
|
|
|
# and there's a lot they could mess up, so we don't make any users admins of ownCloud.
|
|
|
|
# But if we wanted to, we would do this:
|
|
|
|
# ```
|
|
|
|
# for user in $(tools/mail.py user admins); do
|
|
|
|
# sqlite3 $STORAGE_ROOT/owncloud/owncloud.db "INSERT OR IGNORE INTO oc_group_user VALUES ('admin', '$user')"
|
|
|
|
# done
|
|
|
|
# ```
|
2014-08-16 12:59:29 +00:00
|
|
|
|
2014-09-21 20:05:11 +00:00
|
|
|
# Enable PHP modules and restart PHP.
|
2014-08-11 15:59:04 +00:00
|
|
|
php5enmod imap
|
2014-08-12 11:18:45 +00:00
|
|
|
restart_service php5-fpm
|