lilalo
diff initd-l3-backend @ 145:2c9ea8e4fa14
mass upload
author | igor@book.xt.vpn |
---|---|
date | Tue Dec 16 00:12:54 2008 +0200 (2008-12-16) |
parents | |
children |
line diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/initd-l3-backend Tue Dec 16 00:12:54 2008 +0200 1.3 @@ -0,0 +1,32 @@ 1.4 +#!/bin/sh 1.5 + 1.6 +L3_PATH="/usr/bin/" 1.7 +L3_BACKEND="./l3-backend" 1.8 + 1.9 +case "$1" in 1.10 + start) 1.11 + cd ${L3_PATH} 1.12 + nohup ${L3_BACKEND} > /dev/null 2>&1 & 1.13 + ;; 1.14 + stop) 1.15 + l3_backend_pid=`ps waux | grep -v grep | grep 'l3.backend' | awk '{print $2;}'` 1.16 + if [ -z "$l3_backend_pid" ] 1.17 + then 1.18 + echo "l3-backend is not running" 1.19 + else 1.20 + kill ${mywi_pid} 1.21 + fi 1.22 + ;; 1.23 + restart|reload) 1.24 + $0 stop && $0 start 1.25 + ;; 1.26 + stop|reload|restart|force-reload) 1.27 + ;; 1.28 + *) 1.29 + echo "Usage: $N {start|stop|restart|force-reload}" >&2 1.30 + exit 1 1.31 + ;; 1.32 +esac 1.33 + 1.34 +exit 0 1.35 +