875511f6a0
- Switch to USE_GITHUB - Switch to submitter's GH account as he's willing to maintain the project from now on PR: 193823 Submitted by: uffe@uffe.org Approved by: aragon@phat.za.net (old maintainer and original author)
24 lines
309 B
Bash
24 lines
309 B
Bash
#!/bin/sh
|
|
|
|
# $FreeBSD$
|
|
#
|
|
# PROVIDE: volmand
|
|
# REQUIRE: LOGIN
|
|
# KEYWORD: shutdown nojail
|
|
|
|
. /etc/rc.subr
|
|
|
|
name="volmand"
|
|
rcvar=volmand_enable
|
|
|
|
load_rc_config $name
|
|
|
|
: ${volmand_enable:="NO"}
|
|
|
|
pidfile="/var/run/volmand.pid"
|
|
|
|
command_interpreter="/bin/sh"
|
|
command="%%PREFIX%%/sbin/volmand"
|
|
|
|
run_rc_command "$1"
|
|
|