Create a gist now

Instantly share code, notes, and snippets.

What would you like to do?
Delete all static address allocations from a mass called maas.
#!/usr/bin/python
import subprocess
import json
addresses = json.loads(subprocess.check_output("maas maas ipaddresses read", shell=True))
for addr in addresses:
subprocess.check_call("maas maas ipaddresses release ip=" + addr['ip'], shell=True)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment