blob: bdd98f9b7d7867ffa6ded488e0cbe74a9be091cf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#!/bin/ksh
#
# $OpenBSD: httpd,v 1.7 2019/01/21 01:41:16 claudio Exp $
daemon="/usr/sbin/httpd"
. /etc/rc.d/rc.subr
# child will not return a config parsing error to the parent
rc_pre() {
# use rcexec here since daemon_flags may contain arguments with spaces
${rcexec} "${daemon} -n ${daemon_flags}"
}
rc_cmd $1
|