aboutsummaryrefslogtreecommitdiff
path: root/lsm.init
diff options
context:
space:
mode:
authorLucas Castro <lucas@gnuabordo.com.br>2024-01-11 12:07:59 -0300
committerLucas de Castro Borges <lucas@gnuabordo.com.br>2024-06-03 12:23:58 -0300
commit2d526a3651f6e789f99b8e4c1c1583b39869972a (patch)
tree9454be20d34a97c3f7f5a7bc636259c5b9990d30 /lsm.init
parentc7b8e8b43ffd2fb6d7544b125c95f191fe51bc10 (diff)
New upstream version 1.0.8upstream/1.0.8
Diffstat (limited to 'lsm.init')
-rw-r--r--lsm.init97
1 files changed, 0 insertions, 97 deletions
diff --git a/lsm.init b/lsm.init
deleted file mode 100644
index eb4f868..0000000
--- a/lsm.init
+++ /dev/null
@@ -1,97 +0,0 @@
-#!/bin/sh
-#
-# /etc/init.d/lsm
-#
-# This shellscript takes care of starting and stopping lsm.
-#
-# chkconfig: - 79 31
-# description: Lsm, Link Status Monitor
-#
-### BEGIN INIT INFO
-# Provides: lsm
-# Required-Start: $network $syslog
-# Required-Stop:
-# Default-Stop: 0 1 6
-# Short-Description: LSM - link status monitor
-# Description: LSM is the link status monitor
-# LSM can ping multiple targets and when up or down event happens
-# it will execute user configured external script so it can be used
-# as poor man's routing protocol.
-### END INIT INFO
-
-# Source function library.
-. /etc/init.d/functions
-
-# Source networking configuration.
-. /etc/sysconfig/network
-
-# Check that networking is up.
-[ ${NETWORKING} = "no" ] && exit 0
-
-CONFIGFILE="/etc/lsm/lsm.conf"
-PIDFILE="/var/run/lsm.pid"
-
-[ -f /etc/sysconfig/lsm ] && . /etc/sysconfig/lsm
-[ -x /usr/sbin/lsm ] || exit 0
-
-RETVAL=0
-
-start() {
- echo -n $"Starting lsm: "
- daemon --pidfile=${PIDFILE} /usr/sbin/lsm --config $CONFIGFILE --pidfile $PIDFILE
- RETVAL=$?
- /bin/usleep 10000
- echo
- [ $RETVAL = 0 ] && touch /var/lock/subsys/lsm
- return $RETVAL
-}
-
-stop() {
- echo -n $"Stopping lsm: "
- killproc /usr/sbin/lsm
- RETVAL=$?
- echo
- [ $RETVAL = 0 ] && rm -f /var/lock/subsys/lsm
- return $RETVAL
-}
-
-restart() {
- stop
- start
-}
-
-reload() {
- echo -n $"Reloading lsm: "
- killproc -p ${PIDFILE} /usr/sbin/lsm -HUP
- RETVAL=$?
- echo
- return $RETVAL
-}
-
-# See how we were called.
-case "$1" in
- start)
- start
- ;;
- stop)
- stop
- ;;
- restart)
- restart
- ;;
- reload)
- reload
- ;;
- condrestart)
- [ -f /var/lock/subsys/lsm ] && restart
- ;;
- status)
- status -p ${PIDFILE} lsm
- RETVAL=$?
- ;;
- *)
- echo "Usage: lsm {start|stop|restart|condrestart|status}"
- RETVAL=2
-esac
-
-exit $RETVAL