File: stop-memcached

package info (click to toggle)
python-limits 4.4.1-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,064 kB
  • sloc: python: 7,833; makefile: 162; sh: 59
file content (10 lines) | stat: -rwxr-xr-x 157 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
#!/bin/bash

set -e

cd $AUTOPKGTEST_TMP
memcached_tmp=$AUTOPKGTEST_TMP/memcached-tmp

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