Displaying 1 result from an estimated 1 matches for "areca_bin".
2007 Sep 12
0
Re: [CentOS-devel] Areca RAID drivers
...345 40 60
# description: Start the areca application which logs the current state
# of the Areca RAID 1170 controller card, and then polls
# for state changes.
#
# processname: areca-httpd
# config: Unknown
# Source function library.
. /etc/rc.d/init.d/functions
RETVAL=0
ARECA_BIN=/root/bin/archttp64
ARECA_PORT="888"
# See how we were called.
case "$1" in
start)
echo -n "Starting Areca RAID 1170 HTTP daemon: "
$ARECA_BIN $ARECA_PORT >&/tmp/ArecaHTTP.log &
RETVAL=$?
echo
[ $RETVAL -eq 0 ] && touch /var/lock/subsys/areca...