ports/sysutils/mptd/files/mptd.in
2021-04-06 16:31:13 +02:00

25 lines
478 B
Bash

#!/bin/sh
# PROVIDE: mptd
# REQUIRE: dumpon root ldconfig devfs syslogd mail
# KEYWORD: nojail noyroot shutdown
. /etc/rc.subr
name=mptd
rcvar=mptd_enable
load_rc_config $name
raid_alert_mailto=${mptd_alert_mailto:-"root@localhost"}
start_cmd=mptd_start
stop_cmd="killall -9 mptd > /dev/null 2>&1"
mptd_start()
{
if [ -x "%%PREFIX%%/sbin/mptd" -a -e "/dev/mpt0" ]; then
echo "Starting mptd."
%%PREFIX%%/sbin/mptd ${raid_alert_mailto}
fi
}
run_rc_command "$1"