diff options
author | Amitay Isaacs <amitay@gmail.com> | 2012-01-31 15:37:12 +1100 |
---|---|---|
committer | Amitay Isaacs <amitay@samba.org> | 2012-02-21 14:50:09 +0100 |
commit | 20b79c3ea382461c56ddc7433ccf8224c4391f80 (patch) | |
tree | bd43d6e408a31028edecc5d167418989c4342897 /source4/scripting/wscript_build | |
parent | 6daf04eb6eb21734fbac24248009335cea935292 (diff) | |
download | samba-20b79c3ea382461c56ddc7433ccf8224c4391f80.tar.gz samba-20b79c3ea382461c56ddc7433ccf8224c4391f80.tar.bz2 samba-20b79c3ea382461c56ddc7433ccf8224c4391f80.zip |
upgradedns: Upgrade DNS provision from BIND9_FLATFILE to AD based DNS
This script can be used to convert provision from BIND9_FLATFILE to
BIND9_DLZ or SAMBA_INTERNAL dns backends. In addition, the script
migrates the DNS data in zone file (if available).
Autobuild-User: Amitay Isaacs <amitay@samba.org>
Autobuild-Date: Tue Feb 21 14:50:10 CET 2012 on sn-devel-104
Diffstat (limited to 'source4/scripting/wscript_build')
-rw-r--r-- | source4/scripting/wscript_build | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/source4/scripting/wscript_build b/source4/scripting/wscript_build index 9e2cb1eff8..e8d52d5cb6 100644 --- a/source4/scripting/wscript_build +++ b/source4/scripting/wscript_build @@ -2,8 +2,12 @@ from samba_utils import MODE_755 -bld.INSTALL_FILES('${SBINDIR}', 'bin/upgradeprovision bin/samba_dnsupdate bin/samba_spnupdate', +bld.INSTALL_FILES('${SBINDIR}', + 'bin/upgradeprovision bin/samba_dnsupdate bin/samba_spnupdate bin/upgradedns', + chmod=MODE_755, python_fixup=True, flat=True) + +bld.INSTALL_FILES('${BINDIR}', + 'bin/samba-tool bin/samba_kcc', chmod=MODE_755, python_fixup=True, flat=True) -bld.INSTALL_FILES('${BINDIR}', 'bin/samba-tool bin/samba_kcc', chmod=MODE_755, python_fixup=True, flat=True) bld.RECURSE('bin') |