diff options
Diffstat (limited to 'sys-libs/freeipmi/files/bmc-watchdog.initd')
-rw-r--r-- | sys-libs/freeipmi/files/bmc-watchdog.initd | 27 |
1 files changed, 0 insertions, 27 deletions
diff --git a/sys-libs/freeipmi/files/bmc-watchdog.initd b/sys-libs/freeipmi/files/bmc-watchdog.initd deleted file mode 100644 index e1e63515b808..000000000000 --- a/sys-libs/freeipmi/files/bmc-watchdog.initd +++ /dev/null @@ -1,27 +0,0 @@ -#!/sbin/runscript -# Copyright 1999-2008 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-libs/freeipmi/files/bmc-watchdog.initd,v 1.3 2010/08/09 19:35:40 flameeyes Exp $ - -start() { - ebegin "Starting bmc-watchdog" - if [ -f /var/run/bmc-watchdog.pid ] ; then - ewarn "/var/run/bmc-watchdog.pid already exists," - ewarn "removing it but you might want to find out" - ewarn "why this happened." - rm /var/run/bmc-watchdog.pid - fi - start-stop-daemon --background --make-pidfile \ - --start --quiet --exec /usr/sbin/bmc-watchdog \ - --pidfile /var/run/bmc-watchdog.pid -- ${OPTIONS} - eend $? -} - -stop() { - ebegin "Stopping bmc-watchdog" - start-stop-daemon \ - --stop --quiet \ - --pidfile /var/run/bmc-watchdog.pid - eend $? - rm /var/run/bmc-watchdog.pid -} |