net/lsm: Upgrade to new upstream version 0.60. (thank you Brian J. Murrell)

git-svn-id: svn://svn.openwrt.org/openwrt/packages@23422 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
acoul
2010-10-13 09:09:43 +00:00
parent 233fdcbd9c
commit 38f34551b1
3 changed files with 41 additions and 12 deletions

View File

@ -1,12 +1,44 @@
#!/bin/sh /etc/rc.common
# Copyright (C) 2006 OpenWrt.org
START=50
PATH=/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin
NAME=lsm
PROG=/usr/sbin/$NAME
DESC="Link State Monitor"
PIDFILE=/var/run/lsm.pid
START=45
test -x $PROG || exit 0
set -e
start() {
lsm /etc/lsm/lsm.conf
echo -n "Starting $DESC: $NAME"
start-stop-daemon -q -S -p $PIDFILE -x $PROG -- /etc/lsm/lsm.conf $PIDFILE
echo "."
}
stop() {
killall lsm
echo -n "Stopping $DESC: $NAME"
start-stop-daemon -q -K -p $PIDFILE -x $PROG -- /etc/lsm/lsm.conf $PIDFILE
echo "."
}
restart() {
echo -n "Restarting $DESC: $NAME... "
start-stop-daemon -q -K -p $PIDFILE -x $PROG -- /etc/lsm/lsm.conf $PIDFILE
sleep 1
start-stop-daemon -q -S -p $PIDFILE -x $PROG -- /etc/lsm/lsm.conf $PIDFILE
echo "done."
}
reload() {
#
# If the daemon can reload its config files on the fly
# for example by sending it SIGHUP, do it here.
#
# If the daemon responds to changes in its config file
# directly anyway, make this a do-nothing entry.
#
echo -n "Reloading $DESC configuration... "
start-stop-daemon -q -K -s HUP -p $PIDFILE -x $PROG -- /etc/lsm/lsm.conf $PIDFILE
echo "done."
}