summaryrefslogtreecommitdiffstats
path: root/install/tools/ipa-dns-install
diff options
context:
space:
mode:
authorMartin Kosek <mkosek@redhat.com>2011-06-16 10:47:11 +0200
committerRob Crittenden <rcritten@redhat.com>2011-06-19 20:06:21 -0400
commitd9808498a82fa8662e5bc1bc1fca4d175fe9447c (patch)
treeaf0a953504c741482ea7901985bb87c65dc0023b /install/tools/ipa-dns-install
parent79ce958a3c9e182a4b4ee0850d7315fdd51982d7 (diff)
downloadfreeipa-d9808498a82fa8662e5bc1bc1fca4d175fe9447c.tar.gz
freeipa-d9808498a82fa8662e5bc1bc1fca4d175fe9447c.tar.xz
freeipa-d9808498a82fa8662e5bc1bc1fca4d175fe9447c.zip
Improve IP address handling in IPA option parser
Implements a way to pass match_local and parse_netmask parameters to IP option checker. Now, there is just one common option type "ip" with new optional attributes "ip_local" and "ip_netmask" which can be used to pass IP address validation parameters. https://fedorahosted.org/freeipa/ticket/1333
Diffstat (limited to 'install/tools/ipa-dns-install')
-rwxr-xr-xinstall/tools/ipa-dns-install4
1 files changed, 2 insertions, 2 deletions
diff --git a/install/tools/ipa-dns-install b/install/tools/ipa-dns-install
index 39998ac47..b5295b5c7 100755
--- a/install/tools/ipa-dns-install
+++ b/install/tools/ipa-dns-install
@@ -38,9 +38,9 @@ def parse_options():
parser.add_option("-d", "--debug", dest="debug", action="store_true",
default=False, help="print debugging information")
parser.add_option("--ip-address", dest="ip_address",
- type="ipnet", help="Master Server IP Address")
+ type="ip", ip_netmask=True, ip_local=True, help="Master Server IP Address")
parser.add_option("--forwarder", dest="forwarders", action="append",
- type="ipaddr", help="Add a DNS forwarder")
+ type="ip", help="Add a DNS forwarder")
parser.add_option("--no-forwarders", dest="no_forwarders", action="store_true",
default=False, help="Do not add any DNS forwarders, use root servers instead")
parser.add_option("--no-reverse", dest="no_reverse",