Added PID support

This commit is contained in:
Wyatt Johnson
2017-01-25 11:11:33 -07:00
parent f023d1de08
commit edf9ced454
6 changed files with 78 additions and 13 deletions
+10
View File
@@ -0,0 +1,10 @@
#!/bin/bash
# If there is a PID file from the e2e tests...
if [ -e /tmp/talk-e2e.pid ]
then
# Then kill the running talk server.
kill $(cat /tmp/talk-e2e.pid)
fi