30 lines
555 B
Bash
30 lines
555 B
Bash
#!/bin/sh
|
|
#
|
|
# Script to start and stop the KiSS DX daemon, using the rc.subr functionality
|
|
#
|
|
# Add the following lines to /etc/rc.conf to enable this service at boot time:
|
|
#
|
|
# kissdx_enable="YES" (kissdx="YES" for NetBSD)
|
|
#
|
|
# PROVIDE: kissdx
|
|
#
|
|
|
|
. /etc/rc.subr
|
|
|
|
# Name of program to start
|
|
name="kissdx"
|
|
|
|
# Full path to program
|
|
command="%%PREFIX%%/sbin/${name}"
|
|
|
|
# Arguments used to start program
|
|
command_args="-kd"
|
|
|
|
required_files="%%PREFIX%%/etc/${name}.conf"
|
|
|
|
# Load variables from rc.conf
|
|
load_rc_config $name
|
|
|
|
# Invoke the rc.subr
|
|
run_rc_command "$1"
|
|
|