From af33417ec2d14bdf5a3b9a67d227f8909a7e1598 Mon Sep 17 00:00:00 2001 From: Thanh Ha Date: Fri, 17 Aug 2018 22:30:02 -0400 Subject: [PATCH] Allow unbound variables in sigul scripts These scripts as they are designed expect unbound variables so enable them at least until they are fixed. Change-Id: I48182a1d5d5c3cf4d42249bfc8a55b7c0088ec36 Signed-off-by: Thanh Ha --- shell/sigul-configuration.sh | 3 +-- shell/sigul-install.sh | 2 +- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/shell/sigul-configuration.sh b/shell/sigul-configuration.sh index bdc4de67..c063b18b 100644 --- a/shell/sigul-configuration.sh +++ b/shell/sigul-configuration.sh @@ -11,7 +11,7 @@ echo "---> sigul-configuration.sh" # Ensure we fail the job if any steps fail. -set -eu -o pipefail +set -e -o pipefail # Sigul pki configuration is designed to live in ${HOME}/sigul cd "${HOME}" @@ -23,4 +23,3 @@ tar Jxf sigul.tar.xz # Any future use of $SIGUL_PASSWORD needs to have it null terminated sed -i 's/$/\x0/' "${SIGUL_PASSWORD}" - diff --git a/shell/sigul-install.sh b/shell/sigul-install.sh index 5d015ffd..8573154e 100644 --- a/shell/sigul-install.sh +++ b/shell/sigul-install.sh @@ -11,7 +11,7 @@ echo "---> sigul-install.sh" # Ensure we fail the job if any steps fail. -set -eu -o pipefail +set -e -o pipefail # Setup sigul RPM repo echo "[fedora-infra-sigul] -- 2.16.6