From 7b3e2c58e29de6477dfcd2e2051d241c67266c85 Mon Sep 17 00:00:00 2001 From: Jose Fuentes Date: Fri, 14 Dec 2018 09:35:48 +0100 Subject: Pipefail error --- stacksmith/user-scripts/boot.sh | 5 ++++- stacksmith/user-scripts/run.sh | 1 + 2 files changed, 5 insertions(+), 1 deletion(-) (limited to 'stacksmith') diff --git a/stacksmith/user-scripts/boot.sh b/stacksmith/user-scripts/boot.sh index 2e3f1921..19ea8825 100755 --- a/stacksmith/user-scripts/boot.sh +++ b/stacksmith/user-scripts/boot.sh @@ -1,5 +1,5 @@ #!/bin/bash -set -eux +set -euxo pipefail #!/bin/bash @@ -8,6 +8,9 @@ set -euo pipefail # This file will store the config env variables needed by the app readonly CONF=/build/env.config +# EMAIL_URL can also be set here by injecting another env variable in the template +# ROOT_URL can also be set at runtime, by querying AWS api or by using ingress annotations in the template for k8s. + cat >"${CONF}" <<'EOF' export MONGO_URL=mongodb://{{DATABASE_USER}}:{{DATABASE_PASSWORD}}@{{DATABASE_HOST}}:{{DATABASE_PORT}}/{{DATABASE_NAME}} export ROOT_URL=http://localhost diff --git a/stacksmith/user-scripts/run.sh b/stacksmith/user-scripts/run.sh index 20d4743b..e7cc6df6 100755 --- a/stacksmith/user-scripts/run.sh +++ b/stacksmith/user-scripts/run.sh @@ -1,4 +1,5 @@ #!/bin/bash +set -euxo pipefail readonly CONF=/build/env.config -- cgit v1.2.3-1-g7c22