1
0
mirror of https://github.com/samba-team/samba.git synced 2025-02-23 09:57:40 +03:00

selftest: Remove stop() method, not used anywhere.

This commit is contained in:
Jelmer Vernooij 2010-09-04 18:24:02 +02:00
parent 7154e93b21
commit 3c2b733698
5 changed files with 2 additions and 25 deletions

View File

@ -555,7 +555,7 @@ sub write_clientconf($$)
my ($conffile, $vars) = @_;
mkdir("$prefix/client", 0777) unless -d "$prefix/client";
if ( -d "$prefix/client/private" ) {
unlink <$prefix/client/private/*>;
} else {
@ -970,8 +970,6 @@ print "\n";
teardown_env($_) foreach (keys %running_envs);
$target->stop();
my $failed = 0;
# if there were any valgrind failures, show them

View File

@ -159,9 +159,4 @@ sub setup_env($$$)
}
}
sub stop($)
{
my ($self) = @_;
}
1;

View File

@ -178,11 +178,6 @@ sub setup_member($$$)
return $ret;
}
sub stop($)
{
my ($self) = @_;
}
sub stop_sig_term($$) {
my ($self, $pid) = @_;
kill("USR1", $pid) or kill("ALRM", $pid) or warn("Unable to kill $pid: $!");

View File

@ -795,8 +795,7 @@ sub provision($$$$$$$$$)
$ldap_uri =~ s|/|%2F|g;
$ldap_uri = "ldapi://$ldap_uri";
$ctx->{ldap_uri} = $ldap_uri;
if ($self->{ldap} eq "fedora-ds") {
if ($self->{ldap} eq "fedora-ds") {
$ctx->{sid_generator} = "backend";
}
@ -1347,9 +1346,4 @@ sub setup_vampire_dc($$$)
return $env;
}
sub stop($)
{
my ($self) = @_;
}
1;

View File

@ -44,9 +44,4 @@ sub setup_env($$$)
return $envvars;
}
sub stop($)
{
my ($self) = @_;
}
1;