From b151c7ffac8a94d39ec82cac04b654608ea9f678 Mon Sep 17 00:00:00 2001 From: Matt Martz Date: Thu, 15 Jan 2015 19:40:35 -0600 Subject: [PATCH] Add some additional output to cleanup_rax.py --- test/integration/cleanup_rax.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/test/integration/cleanup_rax.py b/test/integration/cleanup_rax.py index f396bbdb68d..87084d06e92 100644 --- a/test/integration/cleanup_rax.py +++ b/test/integration/cleanup_rax.py @@ -67,6 +67,7 @@ def prompt_and_delete(item, prompt, assumeyes): def delete_rax(args): """Function for deleting CloudServers""" + print ("--- Cleaning CloudServers matching '%s'" % args.match_re) search_opts = dict(name='^%s' % args.match_re) for region in pyrax.identity.services.compute.regions: cs = pyrax.connect_to_cloudservers(region=region) @@ -79,6 +80,7 @@ def delete_rax(args): def delete_rax_clb(args): """Function for deleting Cloud Load Balancers""" + print ("--- Cleaning Cloud Load Balancers matching '%s'" % args.match_re) for region in pyrax.identity.services.load_balancer.regions: clb = pyrax.connect_to_cloud_loadbalancers(region=region) for lb in rax_list_iterator(clb):