125 lines
4.5 KiB
Bash
Executable File
125 lines
4.5 KiB
Bash
Executable File
#!/bin/bash
|
|
|
|
source setup/functions.sh
|
|
|
|
echo "Installing Mail-in-a-Box system management daemon..."
|
|
|
|
# DEPENDENCIES
|
|
|
|
# duplicity is used to make backups of user data. It uses boto
|
|
# (via Python 2) to do backups to AWS S3. boto from the Ubuntu
|
|
# package manager is too out-of-date -- it doesn't support the newer
|
|
# S3 api used in some regions, which breaks backups to those regions.
|
|
# See #627, #653.
|
|
apt_install duplicity python-pip
|
|
hide_output pip2 install --upgrade boto
|
|
|
|
# These are required to build/install the cryptography Python package
|
|
# used by our management daemon.
|
|
apt_install python-virtualenv build-essential libssl-dev libffi-dev python3-dev
|
|
|
|
# Create a virtualenv for the installation of Python 3 packages
|
|
# used by the management daemon.
|
|
inst_dir=/usr/local/lib/mailinabox
|
|
mkdir -p $inst_dir
|
|
venv=$inst_dir/env
|
|
if [ ! -d $venv ]; then
|
|
virtualenv -ppython3 $venv
|
|
fi
|
|
|
|
# pip<6.1 + setuptools>=34 had a problem with packages that
|
|
# try to update setuptools during installation, like cryptography.
|
|
# See https://github.com/pypa/pip/issues/4253. The Ubuntu 14.04
|
|
# package versions are pip 1.5.4 and setuptools 3.3. When we used to
|
|
# instal cryptography system-wide under those versions, it updated
|
|
# setuptools to version 34, which created the conflict, and
|
|
# then pip gets permanently broken with errors like
|
|
# "ImportError: No module named 'packaging'".
|
|
#
|
|
# Let's test for the error:
|
|
if ! python3 -c "from pkg_resources import load_entry_point" 2&> /dev/null; then
|
|
# This system seems to be broken already.
|
|
echo "Fixing broken pip and setuptools..."
|
|
rm -rf /usr/local/lib/python3.4/dist-packages/{pkg_resources,setuptools}*
|
|
apt-get install --reinstall python3-setuptools python3-pip python3-pkg-resources
|
|
fi
|
|
#
|
|
# The easiest work-around on systems that aren't already broken is
|
|
# to upgrade pip (to >=9.0.1) and setuptools (to >=34.1) individually
|
|
# before we install any package that tries to update setuptools.
|
|
hide_output $venv/bin/pip install --upgrade pip
|
|
hide_output $venv/bin/pip install --upgrade setuptools
|
|
|
|
# Install other Python 3 packages used by the management daemon.
|
|
# The first line is the packages that Josh maintains himself!
|
|
# NOTE: email_validator is repeated in setup/questions.sh, so please keep the versions synced.
|
|
# Force acme to be updated because it seems to need it after the
|
|
# pip/setuptools breakage (see above) and the ACME protocol may
|
|
# have changed (I got an error on one of my systems).
|
|
hide_output $venv/bin/pip install --upgrade \
|
|
rtyaml "email_validator>=1.0.0" "free_tls_certificates>=0.1.3" "exclusiveprocess" \
|
|
flask dnspython python-dateutil \
|
|
"idna>=2.0.0" "cryptography>=1.0.2" "acme==0.20.0" boto psutil
|
|
|
|
# CONFIGURATION
|
|
|
|
# Create a backup directory and a random key for encrypting backups.
|
|
mkdir -p $STORAGE_ROOT/backup
|
|
if [ ! -f $STORAGE_ROOT/backup/secret_key.txt ]; then
|
|
$(umask 077; openssl rand -base64 2048 > $STORAGE_ROOT/backup/secret_key.txt)
|
|
fi
|
|
|
|
|
|
# Download jQuery and Bootstrap local files
|
|
|
|
# Make sure we have the directory to save to.
|
|
assets_dir=$inst_dir/vendor/assets
|
|
rm -rf $assets_dir
|
|
mkdir -p $assets_dir
|
|
|
|
# jQuery CDN URL
|
|
jquery_version=2.1.4
|
|
jquery_url=https://code.jquery.com
|
|
|
|
# Get jQuery
|
|
wget_verify $jquery_url/jquery-$jquery_version.min.js 43dc554608df885a59ddeece1598c6ace434d747 $assets_dir/jquery.min.js
|
|
|
|
# Bootstrap CDN URL
|
|
bootstrap_version=3.3.7
|
|
bootstrap_url=https://github.com/twbs/bootstrap/releases/download/v$bootstrap_version/bootstrap-$bootstrap_version-dist.zip
|
|
|
|
# Get Bootstrap
|
|
wget_verify $bootstrap_url e6b1000b94e835ffd37f4c6dcbdad43f4b48a02a /tmp/bootstrap.zip
|
|
unzip -q /tmp/bootstrap.zip -d $assets_dir
|
|
mv $assets_dir/bootstrap-$bootstrap_version-dist $assets_dir/bootstrap
|
|
rm -f /tmp/bootstrap.zip
|
|
|
|
# Create an init script to start the management daemon and keep it
|
|
# running after a reboot.
|
|
rm -f /usr/local/bin/mailinabox-daemon # old path
|
|
cat > $inst_dir/start <<EOF;
|
|
#!/bin/bash
|
|
source $venv/bin/activate
|
|
exec python `pwd`/management/daemon.py
|
|
EOF
|
|
chmod +x $inst_dir/start
|
|
rm -f /etc/init.d/mailinabox
|
|
ln -s $(pwd)/conf/management-initscript /etc/init.d/mailinabox
|
|
hide_output update-rc.d mailinabox defaults
|
|
|
|
# Remove old files we no longer use.
|
|
rm -f /etc/cron.daily/mailinabox-backup
|
|
rm -f /etc/cron.daily/mailinabox-statuschecks
|
|
|
|
# Perform nightly tasks at 3am in system time: take a backup, run
|
|
# status checks and email the administrator any changes.
|
|
|
|
cat > /etc/cron.d/mailinabox-nightly << EOF;
|
|
# Mail-in-a-Box --- Do not edit / will be overwritten on update.
|
|
# Run nightly tasks: backup, status checks.
|
|
0 3 * * * root (cd `pwd` && management/daily_tasks.sh)
|
|
EOF
|
|
|
|
# Start the management server.
|
|
restart_service mailinabox
|