summaryrefslogtreecommitdiffstats
path: root/install/tools/ipa-adtrust-install
diff options
context:
space:
mode:
authorSumit Bose <sbose@redhat.com>2011-10-13 12:01:57 +0200
committerMartin Kosek <mkosek@redhat.com>2011-11-30 11:28:39 +0100
commit2ac9d4816a85822825257e16f4fcf74e15a8ea02 (patch)
tree204fbefe50bfc109dc53e6589e4e4b634ced179d /install/tools/ipa-adtrust-install
parente727dc50ccdc9c62e5c4a374f03d0b9fa2d6b19c (diff)
downloadfreeipa-2ac9d4816a85822825257e16f4fcf74e15a8ea02.tar.gz
freeipa-2ac9d4816a85822825257e16f4fcf74e15a8ea02.tar.xz
freeipa-2ac9d4816a85822825257e16f4fcf74e15a8ea02.zip
Add DNS service records for Windows
https://fedorahosted.org/freeipa/ticket/1939
Diffstat (limited to 'install/tools/ipa-adtrust-install')
-rwxr-xr-xinstall/tools/ipa-adtrust-install5
1 files changed, 4 insertions, 1 deletions
diff --git a/install/tools/ipa-adtrust-install b/install/tools/ipa-adtrust-install
index 9a6e61c2c..87fecbfb4 100755
--- a/install/tools/ipa-adtrust-install
+++ b/install/tools/ipa-adtrust-install
@@ -45,6 +45,9 @@ def parse_options():
type="ip", ip_local=True, help="Master Server IP Address")
parser.add_option("--netbios-name", dest="netbios_name",
help="NetBIOS name of the IPA domain")
+ parser.add_option("--no-msdcs", dest="no_msdcs", action="store_true",
+ default=False, help="Do not create DNS service records " \
+ "for Windows in managed DNS server")
parser.add_option("-U", "--unattended", dest="unattended", action="store_true",
default=False, help="unattended installation never prompts the user")
@@ -197,7 +200,7 @@ def main():
api.Backend.ldap2.connect(ccache)
smb.setup(api.env.host, ip_address, api.env.realm, api.env.domain,
- netbios_name)
+ netbios_name, options.no_msdcs)
smb.create_instance()
print "=============================================================================="