mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-29 05:38:00 +00:00
8de3024717
Note: While sill a beta release the author indicates the bits related to the BSD variants are stable and good to go. - Fix startup script. - Update WWW line.
26 lines
364 B
Bash
26 lines
364 B
Bash
#!/bin/sh
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
# PROVIDE: xsi
|
|
# REQUIRE: NETWORKING
|
|
#
|
|
# Add the following line to /etc/rc.conf to enable the XSI daemon:
|
|
# xsi_enable="YES"
|
|
#
|
|
# Optional variables:
|
|
# xsi_flags
|
|
#
|
|
|
|
xsi_enable=${xsi_enable-"NO"}
|
|
xsi_flags=${xsi_flags-""}
|
|
|
|
. %%RC_SUBR%%
|
|
|
|
name=xsi
|
|
rcvar=`set_rcvar`
|
|
|
|
command=%%PREFIX%%/bin/${name}
|
|
load_rc_config ${name}
|
|
run_rc_command "$1"
|