Update bootstrap.sh

This commit is contained in:
Waviest
2021-01-16 23:56:36 +00:00
committed by GitHub
parent c179958afc
commit 80b782e6ed

View File

@@ -22,7 +22,11 @@ log-fail() {
ensure-environment() { ensure-environment() {
local FREE_MEMORY local FREE_MEMORY
echo "Preparing to install $DOKKU_TAG from $DOKKU_REPO..." if [ ! $DOKKU_TAG ]; then
echo "Preparing to install $DOKKU_REPO..."
else
echo "Preparing to install $DOKKU_TAG from $DOKKU_REPO..."
fi
hostname -f >/dev/null 2>&1 || { hostname -f >/dev/null 2>&1 || {
log-fail "This installation script requires that you have a hostname set for the instance. Please set a hostname for 127.0.0.1 in your /etc/hosts" log-fail "This installation script requires that you have a hostname set for the instance. Please set a hostname for 127.0.0.1 in your /etc/hosts"