summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorMatt Martz <matt@sivel.net>2015-01-15 19:40:35 -0600
committerMatt Martz <matt@sivel.net>2015-02-11 12:59:00 -0600
commitb151c7ffac8a94d39ec82cac04b654608ea9f678 (patch)
tree662a06136c0870f102b30c5fba70c4bbe8795fd0 /test
parentb8e7211661a9ab877dab169e3dc48aa954ab7322 (diff)
downloadansible-b151c7ffac8a94d39ec82cac04b654608ea9f678.tar.gz
Add some additional output to cleanup_rax.py
Diffstat (limited to 'test')
-rw-r--r--test/integration/cleanup_rax.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/test/integration/cleanup_rax.py b/test/integration/cleanup_rax.py
index f396bbdb68..87084d06e9 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):