From d4f13b1b8b5d068870fee0319d9573ea45e92c01 Mon Sep 17 00:00:00 2001 From: Thomas Dreibholz Date: Wed, 4 Dec 2024 12:04:29 +0100 Subject: [PATCH] Minor update. --- src/TestDB/run-full-test | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/TestDB/run-full-test b/src/TestDB/run-full-test index 90d7598e..353654ed 100755 --- a/src/TestDB/run-full-test +++ b/src/TestDB/run-full-test @@ -69,7 +69,7 @@ done # ====== Hostname check ===================================================== HOSTNAME="$(hostname -s)" -if [ "${HOSTNAME}" != "localhost" ] && [ "${HOSTNAME}" != "dbtest" ] ; then +if [ "${HOSTNAME}" != "localhost" ] && [ "${HOSTNAME}" != "dbtest" ] && [ "${HOSTNAME}" != "vbox" ] ; then if [ "${REALLY_RUN}" != "--really-run-i-know-that-it-may-mess-up-the-system" ] ; then echo >&2 "Hostname is not \"localhost\" or \"dbtest\". This script assumes to be run on a TEST SYSTEM only, since it replaces (i.e. erases!) existing installations of PostgreSQL, MariaDB/MySQL and MongoDB!" echo >&2 "Stopping here."