1#!/bin/sh
2
3# PROVIDE: kpropd
4# REQUIRE: LOGIN
5# KEYWORD: shutdown
6#
7# Add the following lines to /etc/rc.conf.local or /etc/rc.conf
8# to enable this service:
9#
10# kpropd_enable (bool):      Set to NO by default.
11#                            Set it to YES to enable kpropd.
12# kpropd_flags (str):        Set to "" by default.
13
14. /etc/rc.subr
15
16name=kpropd
17rcvar=kpropd_enable
18
19load_rc_config $name
20
21: ${kpropd_enable:="NO"}
22: ${kpropd_flags=""}
23
24command=%%PREFIX%%/sbin/${name}
25
26run_rc_command "$1"
27