91faa22c52
parameter to daemonize, move the parameter from daemon to daemon_flags, so that the user cannot inadvertently prevent it from daemonizing by adjusting the flags. Discussed with ajacoutot and schwarze, this method was suggested by schwarze@ as a simpler alternative to my diff. ok aja@
24 lines
321 B
Bash
24 lines
321 B
Bash
#!/bin/sh
|
|
#
|
|
# $OpenBSD: nmbd.rc,v 1.5 2011/12/17 22:01:13 sthen Exp $
|
|
|
|
daemon="${TRUEPREFIX}/libexec/nmbd -D"
|
|
|
|
. /etc/rc.d/rc.subr
|
|
|
|
smbcontrol="${TRUEPREFIX}/bin/smbcontrol"
|
|
|
|
rc_check() {
|
|
${smbcontrol} nmbd ping
|
|
}
|
|
|
|
rc_reload() {
|
|
${smbcontrol} nmbd reload-config
|
|
}
|
|
|
|
rc_stop() {
|
|
${smbcontrol} nmbd shutdown
|
|
}
|
|
|
|
rc_cmd $1
|