1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-11 05:18:09 +03:00

selftest/target/samba: add missing methods

These methods are being called but have not been provided.

Signed-off-by: Douglas Bagnall <douglas.bagnall@catalyst.net.nz>
Reviewed-by: Gary Lockyer <gary@catalyst.net.nz>
Reviewed-by: Andrew Bartlett <abartlet@samba.org>
This commit is contained in:
Douglas Bagnall 2019-12-07 23:17:26 +13:00 committed by Andrew Bartlett
parent 213e237e39
commit d087f74d45

View File

@ -926,4 +926,20 @@ sub ns_exec_preargs
}
}
sub check_env {
my ($self, $envvars) = @_;
return 1;
}
sub teardown_env {
my ($self, $env) = @_;
return 1;
}
sub getlog_env {
return '';
}
1;