freebsd-ports/net/mosquitto/files/mosquitto.in
Steve Wills 8dc7ac012f Mosquitto is an open source implementation of a server for version 3.1 of the
MQTT protocol.

WWW: http://mosquitto.org/

PR:		ports/189451
Submitted by:	Joseph Benden <joe@thrallingpenguin.com>
2014-05-25 12:20:49 +00:00

41 lines
747 B
Bash

#!/bin/sh
#
# $FreeBSD$
#
# PROVIDE: mosquitto
# REQUIRE: DAEMON
# BEFORE: LOGIN
# KEYWORD: shutdown
#
# Add the following lines to /etc/rc.conf to enable mosquitto:
#
# mosquitto_enable="YES"
# mosquitto_flags="<set as needed>"
#
# See mosquitto(8) for flags
#
. /etc/rc.subr
name=mosquitto
rcvar=mosquitto_enable
mosquitto_enable=${mosquitto_enable:="NO"}
mosquitto_config=${mosquitto_config:="%%PREFIX%%/etc/mosquitto/mosquitto.conf"}
command=%%PREFIX%%/sbin/mosquitto
command_args="-c ${mosquitto_config} -d"
pidfile=$(grep pidfile ${mosquitto_config} | awk '{print($2)}')
required_files=${mosquitto_config}
extra_commands="reload"
stop_postcmd=stop_postcmd
stop_postcmd()
{
rm -f $pidfile
}
load_rc_config $name
run_rc_command "$1"