e1be9a5eeb
* Vagrantfile: Add Ubuntu 22.04 image * Recognize Ubuntu 22.04 as supported * Bump nextcloud to v24.0.0 * Bump Roundcube to 1.6-beta Still waiting for the final release to come out * Fix version checking functions * NextCloud fixes * Update Roundcube config * Bump roundcube to 1.6-rc * FIx nextcloud installation step * rcm: Update CardDAV plugin to v4.4.0 (Guzzle v7) * Fix STORAGE_ROOT permissions * Update RC CardDAV plugin to v4.4.1 * Unpin b2sdk for Ubuntu 22.04 * Comment fix * Drop support for Debian 10 from this point forward * Software Updates * Nextcloud: 24.0.2 * Nextcloud Calendar: 3.4.2 * Roundcube CardDAV: 4.4.2 * Update Roundcube to v1.6.0 * Update Nextcloud to v24.0.3 * Contacts to v4.2.0 * Upgrade Nextcloud to v24.0.4 * Calendar to v3.5.0 Webmail: * CardDAV to v4.4.3
86 lines
2.9 KiB
Bash
86 lines
2.9 KiB
Bash
source setup/functions.sh
|
|
|
|
# Are we running as root?
|
|
if [[ $EUID -ne 0 ]]; then
|
|
echo "This script must be run as root. Please re-run like this:"
|
|
echo
|
|
echo "sudo $0"
|
|
echo
|
|
exit 1
|
|
fi
|
|
|
|
# Check that we are running on Debian GNU/Linux, or Ubuntu 20.04/22.04
|
|
case $(get_os_code) in
|
|
$OS_UNSUPPORTED)
|
|
echo "This version of Power Mail-in-a-Box only supports being installed on one of these operating systems:"
|
|
# echo "* Debian 10 (buster)"
|
|
echo "* Debian 11 (bullseye)"
|
|
echo "* Ubuntu 20.04 LTS (Focal Fossa)"
|
|
echo "* Ubuntu 22.04 LTS (Jammy Jellyfish)"
|
|
echo
|
|
echo "You're running:"
|
|
lsb_release -ds
|
|
echo
|
|
echo "We can't write scripts that run on every possible setup, sorry."
|
|
exit 1
|
|
;;
|
|
|
|
$OS_DEBIAN_10)
|
|
echo "You're trying to install Power Mail-in-a-Box on Debian 10 (buster), which is no longer supported."
|
|
echo "You can install the latest version of Power Mail-in-a-Box supporting Debian 10 by running the following command:"
|
|
echo
|
|
echo "curl -L https://power-mailinabox.net/setup.sh | sudo bash"
|
|
echo
|
|
echo "Then upgrade to Debian 11 (bullseye). A short guide on how to do so is available here:"
|
|
echo "https://power-mailinabox.net/buster-eol"
|
|
exit 1
|
|
;;
|
|
esac
|
|
|
|
# Check that we have enough memory.
|
|
#
|
|
# /proc/meminfo reports free memory in kibibytes. Our baseline will be 512 MB,
|
|
# which is 500000 kibibytes.
|
|
#
|
|
# We will display a warning if the memory is below 768 MB which is 750000 kibibytes
|
|
#
|
|
# Skip the check if we appear to be running inside of Vagrant, because that's really just for testing.
|
|
TOTAL_PHYSICAL_MEM=$(head -n 1 /proc/meminfo | awk '{print $2}')
|
|
if [ $TOTAL_PHYSICAL_MEM -lt 490000 ]; then
|
|
if [ ! -d /vagrant ]; then
|
|
TOTAL_PHYSICAL_MEM=$(expr \( \( $TOTAL_PHYSICAL_MEM \* 1024 \) / 1000 \) / 1000)
|
|
echo "Your Mail-in-a-Box needs more memory (RAM) to function properly."
|
|
echo "Please provision a machine with at least 512 MB, 1 GB recommended."
|
|
echo "This machine has $TOTAL_PHYSICAL_MEM MB memory."
|
|
exit
|
|
fi
|
|
fi
|
|
if [ $TOTAL_PHYSICAL_MEM -lt 750000 ]; then
|
|
echo "WARNING: Your Mail-in-a-Box has less than 768 MB of memory."
|
|
echo " It might run unreliably when under heavy load."
|
|
fi
|
|
|
|
# Check that tempfs is mounted with exec
|
|
MOUNTED_TMP_AS_NO_EXEC=$(grep "/tmp.*noexec" /proc/mounts || /bin/true)
|
|
if [ -n "$MOUNTED_TMP_AS_NO_EXEC" ]; then
|
|
echo "Mail-in-a-Box has to have exec rights on /tmp, please mount /tmp with exec"
|
|
exit
|
|
fi
|
|
|
|
# Check that no .wgetrc exists
|
|
if [ -e ~/.wgetrc ]; then
|
|
echo "Mail-in-a-Box expects no overrides to wget defaults, ~/.wgetrc exists"
|
|
exit
|
|
fi
|
|
|
|
# Check that we are running on x86_64 or i686 architecture, which are the only
|
|
# ones we support / test.
|
|
ARCHITECTURE=$(uname -m)
|
|
if [ "$ARCHITECTURE" != "x86_64" ] && [ "$ARCHITECTURE" != "i686" ]; then
|
|
echo
|
|
echo "WARNING:"
|
|
echo "Mail-in-a-Box has only been tested on x86_64 and i686 platform"
|
|
echo "architectures. Your architecture, $ARCHITECTURE, may not work."
|
|
echo "You are on your own."
|
|
echo
|
|
fi
|