#!/bin/sh
#
# $NetBSD: zabbix_proxy.sh,v 1.1 2023/02/12 18:37:32 otis Exp $
#
# Zabbix proxy daemon
#
# REQUIRE: DAEMON
# PROVIDE: zabbix_proxy

if [ -f /etc/rc.subr ]; then
	. /etc/rc.subr
fi

name="zabbix_proxy"
rcvar=${name}
command="/usr/pkg/sbin/${name}"
start_precmd="ulimit -s 10240"
required_files="/usr/pkg/etc/${name}.conf"

if [ -f /etc/rc.subr ]; then
	load_rc_config ${name}
	run_rc_command "$1"
else
	echo -n " ${name}"
	[ "x$1" = "xstart" ] && ulimit -s 10240
	${command} ${command_args}
fi
