From 07506f1f53bca612238bbb08d3fde85bf98d3383 Mon Sep 17 00:00:00 2001 From: Jose Diaz-Gonzalez Date: Thu, 31 Dec 2015 08:19:39 -0500 Subject: [PATCH] Adding more info output to bootstrap script run This allows us to better keep track of what commands are being run and when. --- bootstrap.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/bootstrap.sh b/bootstrap.sh index 5b9c6ec3a..7587a2a6e 100755 --- a/bootstrap.sh +++ b/bootstrap.sh @@ -29,6 +29,7 @@ hostname -f > /dev/null 2>&1 || { exit 1 } +echo "--> Ensuring we have the proper dependencies" apt-get update -qq > /dev/null [[ $(lsb_release -sr) == "12.04" ]] && apt-get install -qq -y python-software-properties @@ -90,6 +91,7 @@ elif [[ -n $DOKKU_TAG ]]; then elif [[ "$major" -eq "0" ]] && [[ "$minor" -ge "4" ]] && [[ "$patch" -ge "0" ]]; then export DOKKU_CHECKOUT="$DOKKU_SEMVER" dokku_install_package + echo "--> Running post-install dependency installation" sudo -E dokku plugin:install-dependencies --core else export DOKKU_CHECKOUT="$DOKKU_TAG" @@ -97,6 +99,7 @@ elif [[ -n $DOKKU_TAG ]]; then fi else dokku_install_package + echo "--> Running post-install dependency installation" sudo -E dokku plugin:install-dependencies --core fi