Where necessary add $FreeBSD$ to the file No PORTREVISION bump necessary because this is a no-op
23 lines
298 B
Bash
23 lines
298 B
Bash
#!/bin/sh
|
|
|
|
# $FreeBSD$
|
|
#
|
|
# PROVIDE: dicod
|
|
# REQUIRE: DAEMON
|
|
#
|
|
# Add the following line to /etc/rc.conf to enable dicod:
|
|
#
|
|
# dicod_enable="YES"
|
|
|
|
|
|
dicod_enable=${dicod_enable-"NO"}
|
|
|
|
. /etc/rc.subr
|
|
|
|
name=dicod
|
|
rcvar=dicod_enable
|
|
command=%%PREFIX%%/sbin/dicod
|
|
|
|
load_rc_config $name
|
|
run_rc_command "$1"
|