| #!/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