From d2a20558134090ddbeb236327c82eae0d2d1cba3 Mon Sep 17 00:00:00 2001 From: Yolanda Robla Mota Date: Thu, 8 Sep 2016 11:48:41 +0200 Subject: Fix script when CLEAN_DIB_IMAGES var is not set It relies on this var being exported, and if the script is ran manually and this var is not set, it crashes. Adding a default to this var to avoid this failure. Change-Id: I5c61a1d9f1aafe2d6c64af70d3237b6c5b0d1e1d Signed-Off-By: Yolanda Robla --- bifrost/scripts/destroy-env.sh | 2 ++ 1 file changed, 2 insertions(+) (limited to 'bifrost') diff --git a/bifrost/scripts/destroy-env.sh b/bifrost/scripts/destroy-env.sh index 4dffee62..f092a658 100755 --- a/bifrost/scripts/destroy-env.sh +++ b/bifrost/scripts/destroy-env.sh @@ -27,6 +27,8 @@ echo "removing logs" rm -rf /var/log/libvirt/baremetal_logs/*.log # clean up dib images only if requested explicitly +CLEAN_DIB_IMAGES=${CLEAN_DIB_IMAGES:-false} + if [ $CLEAN_DIB_IMAGES = "true" ]; then rm -rf /httpboot/* rm -rf /tftpboot/* -- cgit 1.2.3-korg