#!/bin/bash

set -e

cd $AUTOPKGTEST_TMP
redis_tmp=$AUTOPKGTEST_TMP/redis-tmp

for pidfile in $redis_tmp/*.pid; do
    kill $(cat $pidfile)
done
