Fix order of OS CI cleanup (#6714)
This commit is contained in:
parent
1721460dcd
commit
e1265b2e7b
1 changed files with 4 additions and 4 deletions
|
@ -34,14 +34,14 @@ def main():
|
||||||
|
|
||||||
conn = openstack.connect()
|
conn = openstack.connect()
|
||||||
|
|
||||||
print('Security groups...')
|
|
||||||
map_if_old(conn.network.delete_security_group,
|
|
||||||
conn.network.security_groups())
|
|
||||||
|
|
||||||
print('Servers...')
|
print('Servers...')
|
||||||
map_if_old(conn.compute.delete_server,
|
map_if_old(conn.compute.delete_server,
|
||||||
conn.compute.servers())
|
conn.compute.servers())
|
||||||
|
|
||||||
|
print('Security groups...')
|
||||||
|
map_if_old(conn.network.delete_security_group,
|
||||||
|
conn.network.security_groups())
|
||||||
|
|
||||||
print('Subnets...')
|
print('Subnets...')
|
||||||
map_if_old(conn.network.delete_subnet,
|
map_if_old(conn.network.delete_subnet,
|
||||||
conn.network.subnets())
|
conn.network.subnets())
|
||||||
|
|
Loading…
Reference in a new issue