Skip to content

Commit 1185bcc

Browse files
committed
add "--release-address" option
1 parent 7bf1c95 commit 1185bcc

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

ip_pool/cli.py

+9
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,11 @@ def parse_args():
1616
metavar="HOSTNAME",
1717
help="Allocate next unused address to HOSTNAME",
1818
)
19+
parser.add_argument(
20+
"--release-address",
21+
metavar="HOSTNAME",
22+
help="Release address for HOSTNAME and return it to the pool",
23+
)
1924
parsed = parser.parse_args()
2025
return parsed
2126

@@ -26,6 +31,10 @@ def ip_pool_main():
2631
if options.initialize:
2732
pool.initialize(options.initialize)
2833

34+
if options.release_address:
35+
hostname = options.release_address
36+
pool.release_address(hostname)
37+
2938
if options.new_address:
3039
hostname = options.new_address
3140
addr = pool.new_address(hostname)

0 commit comments

Comments
 (0)