Verify the --ip-address option when setting up DNS.

There was a corner case where the value of --ip-address was never verified
if you were also setting up DNS.

Added this bit of information to the man page too.

ticket 399
This commit is contained in:
Rob Crittenden
2010-11-04 16:57:20 -04:00
committed by Simo Sorce
parent 0ad0f4ba6c
commit 8d235c6b71
2 changed files with 3 additions and 1 deletions

View File

@@ -598,6 +598,8 @@ def main():
if options.ip_address and options.ip_address != ip:
if options.setup_dns:
if not verify_ip_address(options.ip_address):
return 1
ip = options.ip_address
else:
print >>sys.stderr, "Error: the hostname resolves to an IP address that is different"