2014-08-16 17:30:53 +00:00
|
|
|
#!/bin/bash
|
|
|
|
#########################################################
|
|
|
|
# This script is intended to be run like this:
|
|
|
|
#
|
2020-04-20 22:31:18 +00:00
|
|
|
# curl https://dvn.pt/power-miab | sudo bash
|
2014-08-16 17:30:53 +00:00
|
|
|
#
|
|
|
|
#########################################################
|
|
|
|
|
2014-08-25 12:18:46 +00:00
|
|
|
if [ -z "$TAG" ]; then
|
2020-05-17 01:33:26 +00:00
|
|
|
# Make s
|
|
|
|
OS=`lsb_release -d | sed 's/.*:\s*//'`
|
2020-07-25 23:26:35 +00:00
|
|
|
if [ "$OS" == "Debian GNU/Linux 10 (buster)" -o "$(echo $OS | grep -o 'Ubuntu 20.04')" == "Ubuntu 20.04" ]; then
|
2021-02-01 02:22:15 +00:00
|
|
|
TAG=v0.52.POWER.0
|
2019-01-09 12:11:53 +00:00
|
|
|
else
|
2020-05-17 01:33:26 +00:00
|
|
|
echo "This script must be run on a system running Debian 10 OR Ubuntu 20.04 LTS."
|
2020-04-11 18:18:44 +00:00
|
|
|
exit 1
|
2019-01-09 12:11:53 +00:00
|
|
|
fi
|
2014-08-25 12:18:46 +00:00
|
|
|
fi
|
2014-08-21 17:23:47 +00:00
|
|
|
|
2014-08-16 17:30:53 +00:00
|
|
|
# Are we running as root?
|
|
|
|
if [[ $EUID -ne 0 ]]; then
|
|
|
|
echo "This script must be run as root. Did you leave out sudo?"
|
2020-04-11 18:18:44 +00:00
|
|
|
exit 1
|
2014-08-16 17:30:53 +00:00
|
|
|
fi
|
|
|
|
|
|
|
|
# Clone the Mail-in-a-Box repository if it doesn't exist.
|
2014-10-15 16:22:48 +00:00
|
|
|
if [ ! -d $HOME/mailinabox ]; then
|
2015-06-10 13:33:47 +00:00
|
|
|
if [ ! -f /usr/bin/git ]; then
|
|
|
|
echo Installing git . . .
|
|
|
|
apt-get -q -q update
|
2020-04-22 15:14:20 +00:00
|
|
|
DEBIAN_FRONTEND=noninteractive apt-get -q -q install -y git < /dev/null
|
2015-06-10 13:33:47 +00:00
|
|
|
echo
|
|
|
|
fi
|
2014-09-21 20:37:04 +00:00
|
|
|
|
2014-10-15 16:22:48 +00:00
|
|
|
echo Downloading Mail-in-a-Box $TAG. . .
|
2014-10-05 17:32:52 +00:00
|
|
|
git clone \
|
|
|
|
-b $TAG --depth 1 \
|
2021-04-11 10:14:41 +00:00
|
|
|
https://github.com/mail-in-a-box/mailinabox \
|
2014-10-05 17:32:52 +00:00
|
|
|
$HOME/mailinabox \
|
|
|
|
< /dev/null 2> /dev/null
|
|
|
|
|
|
|
|
echo
|
|
|
|
fi
|
|
|
|
|
|
|
|
# Change directory to it.
|
|
|
|
cd $HOME/mailinabox
|
2014-08-16 17:30:53 +00:00
|
|
|
|
2014-10-05 17:32:52 +00:00
|
|
|
# Update it.
|
2020-04-21 13:48:16 +00:00
|
|
|
if [ "$TAG" != "`git describe --tags`" ]; then
|
2014-08-25 12:18:46 +00:00
|
|
|
echo Updating Mail-in-a-Box to $TAG . . .
|
2014-10-15 16:22:48 +00:00
|
|
|
git fetch --depth 1 --force --prune origin tag $TAG
|
2014-08-21 17:23:47 +00:00
|
|
|
if ! git checkout -q $TAG; then
|
2014-08-16 17:30:53 +00:00
|
|
|
echo "Update failed. Did you modify something in `pwd`?"
|
2020-04-11 18:18:44 +00:00
|
|
|
exit 1
|
2014-08-16 17:30:53 +00:00
|
|
|
fi
|
2014-10-05 17:32:52 +00:00
|
|
|
echo
|
2014-08-16 17:30:53 +00:00
|
|
|
fi
|
|
|
|
|
|
|
|
# Start setup script.
|
|
|
|
setup/start.sh
|
2014-09-21 20:37:04 +00:00
|
|
|
|