Merge pull request #5804 from Ayowel/feat/unattended-install

Allow prompt-less install on low-resource systems
This commit is contained in:
Niklas Meyer 2024-08-06 12:26:51 +02:00 committed by GitHub
commit 10077ece31
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -147,6 +147,7 @@ done
MEM_TOTAL=$(awk '/MemTotal/ {print $2}' /proc/meminfo)
if [ -z "${SKIP_CLAMD}" ]; then
if [ ${MEM_TOTAL} -le "2621440" ]; then
echo "Installed memory is <= 2.5 GiB. It is recommended to disable ClamAV to prevent out-of-memory situations."
echo "ClamAV can be re-enabled by setting SKIP_CLAMD=n in mailcow.conf."
@ -162,7 +163,9 @@ if [ ${MEM_TOTAL} -le "2621440" ]; then
else
SKIP_CLAMD=n
fi
fi
if [ -z "${SKIP_SOLR}" ]; then
if [ ${MEM_TOTAL} -le "2097152" ]; then
echo "Disabling Solr on low-memory system."
SKIP_SOLR=y
@ -182,6 +185,7 @@ elif [ ${MEM_TOTAL} -le "3670016" ]; then
else
SKIP_SOLR=n
fi
fi
if [[ ${SKIP_BRANCH} != y ]]; then
echo "Which branch of mailcow do you want to use?"