From 49e299b62d4c66dbee5aafa3a64932f45db552a7 Mon Sep 17 00:00:00 2001 From: Girish Ramakrishnan Date: Thu, 5 Jan 2017 14:03:54 -0800 Subject: [PATCH] Add ubuntu-standard Fixes #170 --- scripts/cloudron-setup | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/cloudron-setup b/scripts/cloudron-setup index 05ccd9ecb..fb54bf0a9 100755 --- a/scripts/cloudron-setup +++ b/scripts/cloudron-setup @@ -101,13 +101,13 @@ echo " Join us at https://chat.cloudron.io for any questions." echo "" if [[ "${initBaseImage}" == "true" ]]; then - echo "=> Updating apt and installing curl" + echo "=> Updating apt and installing script dependancies" if ! apt-get update &>> "${LOG_FILE}"; then echo "Could not update package repositories" exit 1 fi - if ! apt-get install curl python3 -y &>> "${LOG_FILE}"; then + if ! apt-get install curl python3 ubuntu-standard -y &>> "${LOG_FILE}"; then echo "Could not install setup dependencies (curl)" exit 1 fi