Search
j0ke.net Open Build Service
>
Projects
>
hardware
:
raid
>
3dm2
> 3dm2.redhat
Sign Up
|
Log In
Username
Password
Cancel
Overview
Repositories
Revisions
Requests
Users
Advanced
Attributes
Meta
File 3dm2.redhat of Package 3dm2
#!/bin/sh # # 3dm2: Starts the 3ware daemon # # Author: Michael Benz <linux@3ware.com> # # chkconfig: 345 40 60 # description: Start the 3dm2 application which logs the current state # of the 3ware DiskSwitch controller card, and then polls # for state changes. # # processname: 3dm2 # config: /etc/3dm2/3dm2.conf # Source function library. . /etc/rc.d/init.d/functions RETVAL=0 TDM_BIN=/usr/sbin/3dm2 # See how we were called. case "$1" in start) echo -n "Starting 3ware DiskSwitch daemon: " daemon $TDM_BIN RETVAL=$? echo [ $RETVAL -eq 0 ] && touch /var/lock/subsys/3dm2 || RETVAL=1 ;; stop) echo -n "Stopping 3ware DiskSwitch daemon: " killproc $TDM_BIN RETVAL=$? [ $RETVAL -eq 0 ] && rm -f /var/lock/subsys/3dm2 echo sleep 2 ;; status) status 3dm2 RETVAL=$? ;; restart) $0 stop $0 start RETVAL=$? ;; *) echo "Usage: $0 {start|stop|status|restart}" exit 1 esac exit $RETVAL