From a4676d0e2e75ebcadfb2c947f7a1fa39b8aea246 Mon Sep 17 00:00:00 2001 From: Lucas Castro Date: Thu, 11 Jan 2024 12:07:59 -0300 Subject: New upstream version 1.0.8 --- lsm.init | 97 ---------------------------------------------------------------- 1 file changed, 97 deletions(-) delete mode 100644 lsm.init (limited to 'lsm.init') 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 -- cgit v1.2.3