> + }
> +
> + for(Subnet subnet : subnetApi.list().concat().toList()) {
> + subnetApi.delete(subnet.getId());
> + }
> +
> + for(Port port : portApi.list().concat().toList()) {
> + portApi.delete(port.getId());
> + }
> +
> + for(Network network : networkApi.list().concat().toList()) {
> + if("private".equals(network.getName()) ||
> "public".equals(network.getName()))continue;
> + networkApi.delete(network.getId());
> + }
> + }
> + }*/
Is there a reason this is disabled?
---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds-labs-openstack/pull/111/files#r15359366