blob: 02112f7aff077b27192a395a426392282e8e9969 [file] [log] [blame]
#!/bin/bash
#
# Delete all the slave VM instances.
#
# Copyright 2013 Google Inc. All Rights Reserved.
# Author: rmistry@google.com (Ravi Mistry)
source vm_config.sh
for VM in $VM_SLAVE_NAMES; do
$GCOMPUTE_CMD deleteinstance ${VM_NAME_BASE}-${VM}-${ZONE_TAG}
done