490bcc030c
Add rc.d(8) script. from frantisek holop (maintainer) with some tweaks
16 lines
237 B
Bash
16 lines
237 B
Bash
#!/bin/sh
|
|
#
|
|
# $OpenBSD: tinyproxy.rc,v 1.1 2012/06/22 13:26:59 ajacoutot Exp $
|
|
|
|
daemon="${TRUEPREFIX}/sbin/tinyproxy"
|
|
|
|
. /etc/rc.d/rc.subr
|
|
|
|
rc_reload=NO
|
|
|
|
rc_pre() {
|
|
install -d -o _tinyproxy -g _tinyproxy /var/run/tinyproxy
|
|
}
|
|
|
|
rc_cmd $1
|