15 lines
196 B
Bash
15 lines
196 B
Bash
#!/bin/sh
|
|
#
|
|
# $OpenBSD: tor.rc,v 1.5 2015/07/20 19:55:58 ajacoutot Exp $
|
|
|
|
daemon="${TRUEPREFIX}/bin/tor"
|
|
daemon_timeout=60
|
|
|
|
. /etc/rc.d/rc.subr
|
|
|
|
rc_stop() {
|
|
pkill -INT -xf "${pexp}"
|
|
}
|
|
|
|
rc_cmd $1
|