Search
j0ke.net Open Build Service
>
Projects
>
server:monitoring
>
OpenVISP
> ovs.init
Sign Up
|
Log In
Username
Password
Cancel
Overview
Repositories
Revisions
Requests
Users
Advanced
Attributes
Meta
File ovs.init of Package OpenVISP
#!/bin/sh # # /etc/init.d/ovs # ### BEGIN INIT INFO # Provides: ovs # Required-Start: $network $named $syslog $time postfix # Required-Stop: $null # Default-Start: 3 5 # Default-Stop: # Description: start the OpenVISP Statistics Grapher ### END INIT INFO # check for sysconfig file [ -f /etc/sysconfig/ovs ] && . /etc/sysconfig/ovs ; PATH=/bin:/usr/bin MG_BIN="/usr/bin/ovs.pl" MG_OPTS=${OVS_OPTS:="-d -v"} PID=${OVS_PID:="/var/run/ovs.pid"} RRD=${OVS_RRD:="/var/log"} LOG=${OVS_LOG:="/var/log/ovs.log"} LOG_FILE=${OVS_LOG_FILE:="/var/log/syslog"} # Shell functions sourced from /etc/rc.status: # rc_check check and set local and overall rc status # rc_status check and set local and overall rc status # rc_status -v ditto but be verbose in local rc status # rc_status -v -r ditto and clear the local rc status # rc_failed set local and overall rc status to failed # rc_failed <num> set local and overall rc status to <num><num> # rc_reset clear local rc status (overall remains) # rc_exit exit appropriate to overall rc status . /etc/rc.status # First reset status of this service rc_reset # Return values acc. to LSB for all commands but status: # 0 - success # 1 - generic or unspecified error # 2 - invalid or excess argument(s) # 3 - unimplemented feature (e.g. "reload") # 4 - insufficient privilege # 5 - program is not installed # 6 - program is not configured # 7 - program is not running # # Note that starting an already running service, stopping # or restarting a not-running service as well as the restart # with force-reload (in case signalling is not supported) are # considered a success. case "$1" in start) echo -n "Starting mail statistics grapher (ovs): " ## Start daemon with startproc(8). If this fails ## the echo return value is set appropriate. nice -19 ${MG_BIN} ${MG_OPTS} \ --logfile ${LOG_FILE} \ --daemon-pid=${PID} \ --daemon-rrd=${RRD} \ --daemon-log=${LOG} # remember status and be verbose rc_status -v ;; stop) echo -n "Stopping mail statistics grapher (ovs): " ## Stop daemon with killproc(8) and if this fails ## set echo the echo return value. /sbin/killproc -p ${PID} ${MG_BIN} # remeber status and be verbose rc_status -v ;; restart) ## Stop the service and regardless of whether it was ## running or not, start it again. $0 stop $0 start # remember status and be quiet rc_status ;; status) echo -n "Checking for statistics grapher (ovs): " ## Check status with checkproc(8), if process is running ## checkproc will return with exit status 0. # Status has a slightly different for the status command: # 0 - service running # 1 - service dead, but /var/run/ pid file exists # 2 - service dead, but /var/lock/ lock file exists # 3 - service not running # NOTE: checkproc returns LSB compliant status values. /sbin/checkproc -p ${PID} ${MG_BIN} # remember status and be verbose rc_status -v ;; info) echo "Info about VAR's of statistics grapher (ovs): " echo "Binary: $MG_BIN" echo "Options: $MG_OPTS" echo "PID file: $PID" echo "RRD DIR: $RRD" echo "LOG: $LOG" echo "LOG file: $LOG_FILE" ;; *) echo "Usage: $0 { start|stop|restart|status|info}" exit 1 ;; esac # finally clean exit rc_exit