diff --git a/setup/functions.sh b/setup/functions.sh index 0309d6ff..cbd0bd7d 100644 --- a/setup/functions.sh +++ b/setup/functions.sh @@ -178,7 +178,7 @@ function input_yesno { # input_yesno "title" "prompt" VARIABLE # Asking to the user a question, when the response can be only true or false # ATTENTION: I am using only result_code, because with --yesno I don't have a response! - declare -n result_code=$3_EXITCODE + declare -n result_code=$3 set +e result_temp=$(dialog --stdout --title "$1" --yesno "$2" 0 0) result_code=$? diff --git a/setup/management.sh b/setup/management.sh index 14f2406c..78bc9210 100755 --- a/setup/management.sh +++ b/setup/management.sh @@ -6,9 +6,6 @@ source /etc/mailinabox.conf # load global vars echo "Installing Mail-in-a-Box system management daemon..." # DEPENDENCIES - -# duplicity is used to make backups of user data. -# # virtualenv is used to isolate the Python 3 packages we # install via pip from the system-installed packages. # diff --git a/setup/questions.sh b/setup/questions.sh index be9e9760..67f48a23 100644 --- a/setup/questions.sh +++ b/setup/questions.sh @@ -11,22 +11,22 @@ if [ -z "${NONINTERACTIVE:-}" ]; then apt-get -q -q update apt_get_quiet install dialog python3 python3-pip || exit 1 fi - - echo "install vintual env for python3" - hide_output apt install python3-venv - hide_output python3 -m venv mailinabox - hide_output source mailinabox/bin/activate - # Installing email_validator is repeated in setup/management.sh, but in setup/management.sh # we install it inside a virtualenv. In this script, we don't have the virtualenv yet # so we install the python package globally. + + echo "install virtual env for python3" + hide_output apt install python3-venv + hide_output python3 -m venv mailinabox + + hide_output source mailinabox/bin/activate hide_output pip3 install "email_validator>=1.0.0" || exit 1 - message_box "Mail-in-a-Box Installation" \ - "Hello and thanks for deploying a Mail-in-a-Box! + message_box "Debian Mail-in-a-Box Installation" \ + "Hello and thanks for deploying a Debian Mail-in-a-Box, from the fork of AiutoPcAmico! \n\nI'm going to ask you a few questions. \n\nTo change your answers later, just run 'sudo mailinabox' from the command line. - \n\nNOTE: You should only install this on a brand new Ubuntu installation 100% dedicated to Mail-in-a-Box. Mail-in-a-Box will, for example, remove apache2." + \n\nNOTE: You should only install this on a brand new Debian 12 installation 100% dedicated to Mail-in-a-Box. Mail-in-a-Box will, for example, remove apache2." fi # The box needs a name.