summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDiego Elio Pettenò <flameeyes@gentoo.org>2011-12-14 03:58:02 +0000
committerDiego Elio Pettenò <flameeyes@gentoo.org>2011-12-14 03:58:02 +0000
commit6b61ac3623c6b24e91e986f21c406f968c68eeb0 (patch)
tree8fe19ce49383f0634b6ad37b0eb71344d7a80c83 /sys-libs/freeipmi/files
parentVersion bump. (diff)
downloadgentoo-2-6b61ac3623c6b24e91e986f21c406f968c68eeb0.tar.gz
gentoo-2-6b61ac3623c6b24e91e986f21c406f968c68eeb0.tar.bz2
gentoo-2-6b61ac3623c6b24e91e986f21c406f968c68eeb0.zip
Version bump and remove old.
(Portage version: 2.2.0_alpha80/cvs/Linux x86_64)
Diffstat (limited to 'sys-libs/freeipmi/files')
-rw-r--r--sys-libs/freeipmi/files/bmc-watchdog.initd27
-rw-r--r--sys-libs/freeipmi/files/ipmidetectd.initd27
2 files changed, 0 insertions, 54 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
-}
diff --git a/sys-libs/freeipmi/files/ipmidetectd.initd b/sys-libs/freeipmi/files/ipmidetectd.initd
deleted file mode 100644
index a9b274c91eae..000000000000
--- a/sys-libs/freeipmi/files/ipmidetectd.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/ipmidetectd.initd,v 1.3 2010/08/09 19:35:40 flameeyes Exp $
-
-start() {
- ebegin "Starting ipmidetectd"
- if [ -f /var/run/ipmidetectd.pid ] ; then
- ewarn "/var/run/ipmidetectd.pid already exists,"
- ewarn "removing it but you might want to find out"
- ewarn "why this happened."
- rm /var/run/ipmidetectd.pid
- fi
- start-stop-daemon --background --make-pidfile \
- --start --quiet --exec /usr/sbin/ipmidetectd \
- --pidfile /var/run/ipmidetectd.pid
- eend $?
-}
-
-stop() {
- ebegin "Stopping ipmidetectd"
- start-stop-daemon \
- --stop --quiet \
- --pidfile /var/run/ipmidetectd.pid
- eend $?
- rm /var/run/ipmidetectd.pid
-}