diff options
author | Stefan Metzmacher <metze@samba.org> | 2012-09-12 09:31:17 +0200 |
---|---|---|
committer | Stefan Metzmacher <metze@samba.org> | 2012-09-12 16:51:29 +0200 |
commit | 1b848ecbffe5761ba8c6368a3eae24c3ee10cfce (patch) | |
tree | c0797e02826a1e414d461a342eb4aae2f0d6993b /selftest/target | |
parent | ea1841ee10a25e654ff1f7dde6518707c9d1581a (diff) | |
download | samba-1b848ecbffe5761ba8c6368a3eae24c3ee10cfce.tar.gz samba-1b848ecbffe5761ba8c6368a3eae24c3ee10cfce.tar.bz2 samba-1b848ecbffe5761ba8c6368a3eae24c3ee10cfce.zip |
lib/param: change the default for 'allow dns updates' to 'secure only'
metze
Diffstat (limited to 'selftest/target')
-rw-r--r-- | selftest/target/Samba4.pm | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/selftest/target/Samba4.pm b/selftest/target/Samba4.pm index b1f6118746..ce005d4874 100644 --- a/selftest/target/Samba4.pm +++ b/selftest/target/Samba4.pm @@ -1191,8 +1191,7 @@ sub provision_dc($$) my ($self, $prefix) = @_; print "PROVISIONING DC..."; - my $extra_conf_options = "netbios aliases = localDC1-a -allow dns updates = signed"; + my $extra_conf_options = "netbios aliases = localDC1-a"; my $ret = $self->provision($prefix, "domain controller", "localdc", @@ -1251,7 +1250,7 @@ sub provision_fl2003dc($$) "samba2003.example.com", "2003", "locDCpass6", - undef, "allow dns updates = True", "", undef); + undef, "allow dns updates = nonsecure and secure", "", undef); unless($self->add_wins_config("$prefix/private")) { warn("Unable to add wins configuration"); |