From b32d92e890caac903491116e9d817aa780c0323b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rg=20Frings-F=C3=BCrst?= Date: Wed, 23 Jul 2014 15:03:00 +0200 Subject: Imported Upstream version 1.8.14 --- debian/ipmitool.ipmievd.init | 105 ------------------------------------------- 1 file changed, 105 deletions(-) delete mode 100644 debian/ipmitool.ipmievd.init (limited to 'debian/ipmitool.ipmievd.init') diff --git a/debian/ipmitool.ipmievd.init b/debian/ipmitool.ipmievd.init deleted file mode 100644 index a0c5f20..0000000 --- a/debian/ipmitool.ipmievd.init +++ /dev/null @@ -1,105 +0,0 @@ -#! /bin/sh -### BEGIN INIT INFO -# Provides: ipmievd -# Required-Start: $remote_fs $syslog -# Required-Stop: $remote_fs $syslog -# Default-Start: 2 3 4 5 -# Default-Stop: 0 1 6 -# Short-Description: IPMI event daemon -# Description: ipmievd is a daemon which will listen for events -# from the BMC that are being sent to the SEL and -# also log those messages to syslog. -### END INIT INFO -# -# Author: Elmar Hoffmann -# Licence: This script is public domain using the same -# licence as ipmitool itself. -# Modified by: Petter Reinholdtsen - -set -e - -PATH=/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin -DESC="IPMI event daemon" -NAME=ipmievd -DAEMON=/usr/sbin/$NAME -PIDFILE=/var/run/$NAME.pid0 -SCRIPTNAME=/etc/init.d/$NAME -ENABLED=true - -# Gracefully exit if the package has been removed. -test -x $DAEMON || exit 0 - -. /lib/lsb/init-functions -test -r /etc/default/rcS && . /etc/default/rcS - -# Options used by ipmievd. -# -# "open" uses the asynchronous event notification from the OpenIPMI -# kernel driver, "sel" uses active polling of the contents of the SEL -# for new events. -# -# Need to force 'daemon' mode, to make sure messages are sent to -# syslog and the program forks into the background. -# -# Se ipmievd(8) for more info. -IPMIEVD_OPTIONS="open daemon" - -# Read config file if it is present. -[ -f /etc/default/$NAME ] && . /etc/default/$NAME - -test "$ENABLED" != "false" || exit 0 - -# Backwards compatibility with version 1.8.6-2 and 1.8.6-1. The -# variable was renamed to be compatible with upstream, SuSe and RedHat. -if [ -n "$IPMIEVD_OPTS" ]; then - echo "warning: /etc/default/$NAME variable IPMIEVD_OPTS should be renamed to IPMIEVD_OPTIONS" - IPMIEVD_OPTIONS="$IPMIEVD_OPTS" -fi - -# -# Function that starts the daemon/service. -# -d_start() { - start-stop-daemon --start --quiet --exec $DAEMON --pidfile $PIDFILE -- $IPMIEVD_OPTIONS -} - -# -# Function that stops the daemon/service. -# -d_stop() { - start-stop-daemon --stop --oknodo --quiet --name $NAME --exec $DAEMON --pidfile $PIDFILE -} - -CODE=0 - -case "$1" in - start) - [ "$VERBOSE" != no ] && log_begin_msg "Starting $DESC" "$NAME" - d_start || CODE=$? - [ "$VERBOSE" != no ] && log_end_msg $CODE - exit $CODE - ;; - stop) - log_begin_msg "Stopping $DESC" "$NAME" - d_stop || CODE=$? - log_end_msg $CODE - exit $CODE - ;; - restart|force-reload) - log_begin_msg "Restarting $DESC" "$NAME" - d_stop || true - sleep 1 - d_start || CODE=$? - log_end_msg $CODE - exit $CODE - ;; - status) - status_of_proc $DAEMON $NAME - ;; - *) - echo "Usage: $SCRIPTNAME {start|stop|restart|force-reload|status}" >&2 - exit 1 - ;; -esac - -exit 0 -- cgit v1.2.3