Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions build/climc/root/opt/yunion/scripts/tools/clean_storage.sh
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,11 @@ do
climc disk-purge $disk_id > /dev/null
done

for snapshot_id in $(climc snapshot-list --limit 2048 --scope system --admin --filter "storage_id.equals($STORAGE_ID)" | egrep '[0-9a-f]{8}-([0-9a-f]{4}-){3}[0-9a-f]{12}' | awk '{print $2}')
do
climc snapshot-delete $snapshot_id > /dev/null
done

# CACHE_ID=$(climc storage-show $STORAGE_ID | grep -w " storagecache_id " | awk '{print $4}')

climc storage-delete $STORAGE_ID > /dev/null