diff options
author | Yolanda Robla Mota <yroblamo@redhat.com> | 2016-09-08 11:48:41 +0200 |
---|---|---|
committer | Yolanda Robla Mota <yroblamo@redhat.com> | 2016-09-08 11:59:07 +0200 |
commit | 49344e5c43afb3a579666a75d95850f8028aafcd (patch) | |
tree | 25262c2f5d9b2334f9d21d1c6e19f0ff44f50ac0 | |
parent | 2b1ba7d32f7378b1a4426a07e17eb0abd9cd094d (diff) |
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 <yroblamo@redhat.com>
-rwxr-xr-x | prototypes/bifrost/scripts/destroy-env.sh | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/prototypes/bifrost/scripts/destroy-env.sh b/prototypes/bifrost/scripts/destroy-env.sh index 4dffee62a..f092a658a 100755 --- a/prototypes/bifrost/scripts/destroy-env.sh +++ b/prototypes/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/* |