diff options
author | Tim Beale <timbeale@catalyst.net.nz> | 2019-02-14 14:37:16 +1300 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2019-03-05 23:27:30 +0000 |
commit | 2b60936d91268688db8344dfee68766b6494c604 (patch) | |
tree | 35a2da48c5eab48bf42f31cc8129a5f5bf9ce1ca | |
parent | 572f83d62a5853634dfa79669393a70d9ce20731 (diff) | |
download | samba-2b60936d91268688db8344dfee68766b6494c604.tar.gz |
selftest: Avoid hard-coding client IP address
We implicitly assume the client IP used by selftest is always
127.0.0.11. Add an iface entry for the client to make this a little more
explicit.
Signed-off-by: Tim Beale <timbeale@catalyst.net.nz>
Reviewed-by: Andrew Bartlett <abartlet@samba.org>
-rw-r--r-- | selftest/target/Samba.pm | 1 | ||||
-rwxr-xr-x | selftest/target/Samba4.pm | 3 |
2 files changed, 3 insertions, 1 deletions
diff --git a/selftest/target/Samba.pm b/selftest/target/Samba.pm index 8e8723c0b88..fdba45504bc 100644 --- a/selftest/target/Samba.pm +++ b/selftest/target/Samba.pm @@ -400,6 +400,7 @@ sub get_interface($) $interfaces{"localnt4dc9"} = 9; # 11-16 used by selftest.pl for client interfaces + $interfaces{"client"} = 11; $interfaces{"addc_no_nss"} = 17; $interfaces{"addc_no_ntlm"} = 18; diff --git a/selftest/target/Samba4.pm b/selftest/target/Samba4.pm index 84b7fa9dc03..de7307d95c8 100755 --- a/selftest/target/Samba4.pm +++ b/selftest/target/Samba4.pm @@ -333,12 +333,13 @@ sub write_ldb_file($$$) sub add_wins_config($$) { my ($self, $privatedir) = @_; + my $client_ip = Samba::get_ipv4_addr("client"); return $self->write_ldb_file("$privatedir/wins_config.ldb", " dn: name=TORTURE_11,CN=PARTNERS objectClass: wreplPartner name: TORTURE_11 -address: 127.0.0.11 +address: $client_ip pullInterval: 0 pushChangeCount: 0 type: 0x3 |