From 798bf4927c094ce1cbadbeb2be809a6b85b38336 Mon Sep 17 00:00:00 2001 From: Sreejith Punnapuzha Date: Mon, 1 Mar 2021 11:04:57 -0600 Subject: [PATCH] Correct ephemeral image name in cleanup script Signed-off-by: Sreejith Punnapuzha Change-Id: I557c4dc8dfd25d2eee29b9dff1f7fe28e32229e7 --- tools/deployment/clean.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/deployment/clean.sh b/tools/deployment/clean.sh index 989ebb181..7fdb4d2a2 100755 --- a/tools/deployment/clean.sh +++ b/tools/deployment/clean.sh @@ -22,7 +22,7 @@ sudo kill -9 $(lsof -t -i:8000 -i:8099) vm_types='ephemeral|target|worker' vol_list=$(sudo virsh vol-list --pool airship | grep -E $vm_types | awk '{print $1}') -iso_list=$(sudo virsh vol-list --pool default | awk '{print $1}'| grep -i 'ubuntu.*\.img$') +iso_list=$(sudo virsh vol-list --pool default | awk '{print $1}'| grep -i 'ephemeral.*\.img$') vm_list=$(sudo virsh list --all | grep -E $vm_types | awk '{print $2}') net_list=$(sudo virsh net-list --all | awk '{print $1}'| grep -i air)