mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-24 00:45:52 +00:00
dbecc08e70
Submitted by: Blaz Zupan
35 lines
455 B
Bash
35 lines
455 B
Bash
#!/bin/sh
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
# PROVIDE: ser
|
|
# REQUIRE: DAEMON mysql postgresql
|
|
#
|
|
prefix=%%PREFIX%%
|
|
|
|
# Add the following lines to /etc/rc.conf to enable ser:
|
|
#
|
|
# ser_enable="YES"
|
|
|
|
. %%RC_SUBR%%
|
|
|
|
name="ser"
|
|
rcvar=`set_rcvar`
|
|
command="${prefix}/sbin/${name}"
|
|
pidfile="/var/run/${name}.pid"
|
|
command_args="-P ${pidfile} > /dev/null"
|
|
|
|
load_rc_config $name
|
|
|
|
: ${ser_enable="NO"}
|
|
|
|
stop_postcmd=stop_postcmd
|
|
|
|
stop_postcmd()
|
|
{
|
|
rm -f $pidfile
|
|
}
|
|
|
|
run_rc_command "$1"
|