mailinabox/setup/bootstrap.sh

43 lines
932 B
Bash
Raw Normal View History

#!/bin/bash
#########################################################
# This script is intended to be run like this:
#
# wget https://.../bootstrap.sh | sudo bash
#
#########################################################
if [ -z "$TAG" ]; then
TAG=14.08-beta
fi
# Are we running as root?
if [[ $EUID -ne 0 ]]; then
echo "This script must be run as root. Did you leave out sudo?"
exit
fi
# Go to root's home directory.
cd
# Clone the Mail-in-a-Box repository if it doesn't exist.
if [ ! -d mailinabox ]; then
echo Downloading Mail-in-a-Box . . .
apt-get -q -q install -y git
git clone -q https://github.com/mail-in-a-box/mailinabox
cd mailinabox
git checkout -q $TAG
# If it does exist, update it.
else
echo Updating Mail-in-a-Box to $TAG . . .
cd mailinabox
git fetch
if ! git checkout -q $TAG; then
echo "Update failed. Did you modify something in `pwd`?"
exit
fi
fi
# Start setup script.
setup/start.sh