
Move the docs around a little to allow the new templated docs.o.o site link to things like the user and install guides in the expected location. Change-Id: I7f3b625c04aa6cd2a7ebe5f2ce4a398cf464b1cc Signed-off-by: Doug Hellmann <doug@doughellmann.com>
14 lines
443 B
Python
14 lines
443 B
Python
import shade
|
|
|
|
# Initialize and turn on debug logging
|
|
shade.simple_logging(debug=True)
|
|
|
|
for cloud_name, region_name in [
|
|
('my-vexxhost', 'ca-ymq-1'),
|
|
('my-citycloud', 'Buf1'),
|
|
('my-internap', 'ams01')]:
|
|
# Initialize cloud
|
|
cloud = shade.openstack_cloud(cloud=cloud_name, region_name=region_name)
|
|
for server in cloud.search_servers('my-server'):
|
|
cloud.delete_server(server, wait=True, delete_ips=True)
|