aboutsummaryrefslogtreecommitdiff
path: root/tests/ftp.pm
blob: 390c21459ff0464709f1e85577a90c7fb9e023f8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# make sure no leftovers are still running
sub ftpkillslaves {
    for $ext (("", "ipv6")) {
        for $id (("", "2")) {
            for $base (('filt', 'data')) {
                my $f = ".sock$base$id$ext.pid";
                my $pid = checkserver($f);
                if($pid > 0) {
                    kill (9, $pid); # die!
                }
                unlink($f);
            }
        }
    }
}

1;