diff options
author | Diego Elio Pettenò <flameeyes@gentoo.org> | 2010-08-09 19:34:53 +0000 |
---|---|---|
committer | Diego Elio Pettenò <flameeyes@gentoo.org> | 2010-08-09 19:34:53 +0000 |
commit | 08cfb1c68ebf85efe1b127109bc9bae40f247469 (patch) | |
tree | beed959a53bf4a20dc224f000fc2046630fd5dd4 /sys-libs | |
parent | Take over maintainership of package; cleanup old versions; add a new revision... (diff) | |
download | gentoo-2-08cfb1c68ebf85efe1b127109bc9bae40f247469.tar.gz gentoo-2-08cfb1c68ebf85efe1b127109bc9bae40f247469.tar.bz2 gentoo-2-08cfb1c68ebf85efe1b127109bc9bae40f247469.zip |
Remove exec bit from the init scripts (part 1: commit removal).
(Portage version: 2.2_rc67/cvs/Linux x86_64)
Diffstat (limited to 'sys-libs')
-rw-r--r-- | sys-libs/freeipmi/files/bmc-watchdog.initd | 27 | ||||
-rw-r--r-- | sys-libs/freeipmi/files/ipmidetectd.initd | 27 |
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 51010dad52a7..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.1 2008/04/22 09:44:39 dev-zero 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 883c1a9fc87d..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.1 2008/04/22 09:44:39 dev-zero 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 -} |