mirror of
https://github.com/openbsd/ports.git
synced 2026-06-18 07:24:23 +02:00
15 lines
177 B
Bash
15 lines
177 B
Bash
#!/bin/ksh
|
|
|
|
daemon="${TRUEPREFIX}/bin/tor"
|
|
daemon_timeout=60
|
|
|
|
. /etc/rc.d/rc.subr
|
|
|
|
rc_stop_signal=INT
|
|
|
|
rc_configtest() {
|
|
${daemon} ${daemon_flags} --verify-config
|
|
}
|
|
|
|
rc_cmd $1
|