diff --git a/scripts/cloudron-setup b/scripts/cloudron-setup index c8ad86b92..8aabcf62d 100755 --- a/scripts/cloudron-setup +++ b/scripts/cloudron-setup @@ -162,7 +162,7 @@ if [[ "${initBaseImage}" == "true" ]]; then exit 1 fi - if ! apt-get install curl python3 ubuntu-standard -y &>> "${LOG_FILE}"; then + if ! DEBIAN_FRONTEND=noninteractive apt-get -o Dpkg::Options::="--force-confdef" -o Dpkg::Options::="--force-confold" -y install curl python3 ubuntu-standard -y &>> "${LOG_FILE}"; then echo "Could not install setup dependencies (curl). See ${LOG_FILE}" exit 1 fi