11 lines
187 B
Bash
Executable File
11 lines
187 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
PROXYDIR="$PWD/$(dirname $0)"
|
|
PORT=${PORT:-9000}
|
|
|
|
PIDFILE="$PROXYDIR/proxy-$PORT.pid"
|
|
|
|
set -x
|
|
|
|
start-stop-daemon --verbose --stop --pidfile $PIDFILE --remove-pidfile
|