* [gentoo-commits] gentoo-x86 commit in sys-libs/freeipmi/files: bmc-watchdog.confd ipmidetectd.initd freeipmi-0.5.6-as_needed.patch bmc-watchdog.initd freeipmi-0.5.6-missing_syslog_include.patch
@ 2008-04-22 9:44 Tiziano Mueller (dev-zero)
0 siblings, 0 replies; only message in thread
From: Tiziano Mueller (dev-zero) @ 2008-04-22 9:44 UTC (permalink / raw
To: gentoo-commits
dev-zero 08/04/22 09:44:40
Added: bmc-watchdog.confd ipmidetectd.initd
freeipmi-0.5.6-as_needed.patch bmc-watchdog.initd
freeipmi-0.5.6-missing_syslog_include.patch
Log:
Version bump (bug #199284), reassigned package to 'sysadmin' herd.
(Portage version: 2.1.5_rc4)
Revision Changes Path
1.1 sys-libs/freeipmi/files/bmc-watchdog.confd
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-libs/freeipmi/files/bmc-watchdog.confd?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-libs/freeipmi/files/bmc-watchdog.confd?rev=1.1&content-type=text/plain
Index: bmc-watchdog.confd
===================================================================
#
# This configuration file controls the behaviour of the bmc-watchdog daemon
# from FreeIPMI.
#
# -u INT, --timer-use=INT
# Set timer use. The timer use value can be set to one of the
# following: 1 = BIOS FRB2, 2 = BIOS POST, 3 = OS_LOAD, 4 = SMS
# OS, 5 = OEM.
#
# -p INT, --pre-timeout-interrupt=INT
# Set pre-timeout interrupt. The pre timeout interrupt can be set
# to one of the following: 0 = None, 1 = SMI, 2 = NMI, 3 = Messag-
# ing Interrupt.
#
# -a INT, --timeout-action=INT
# Set timeout action. The timeout action can be set to one of the
# following: 0 = No action, 1 = Hard Reset, 2 = Power Down, 3 =
# Power Cycle.
#
# -F, --clear-bios-frb2
# Clear BIOS FRB2 Timer Use Flag.
#
# -P, --clear-bios-post
# Clear BIOS POST Timer Use Flag.
#
# -L, --clear-os-load
# Clear OS Load Timer Use Flag.
#
# -S, --clear-sms-os
# Clear SMS/OS Timer Use Flag.
#
# -O, --clear-oem
# Clear OEM Timer Use Flag.
#
# -i SECS, --initial-countdown=SECS
# Set initial countdown in seconds.
#
# -e, --reset-period
# Time interval to wait before resetting timer. The default is 60
# seconds.
#
# For the remaining options, consult man bmc-watchdog
#
OPTIONS="-d -u 4 -p 0 -a 1 -F -P -L -S -O -i 900 -e 60"
1.1 sys-libs/freeipmi/files/ipmidetectd.initd
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-libs/freeipmi/files/ipmidetectd.initd?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-libs/freeipmi/files/ipmidetectd.initd?rev=1.1&content-type=text/plain
Index: ipmidetectd.initd
===================================================================
#!/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
}
1.1 sys-libs/freeipmi/files/freeipmi-0.5.6-as_needed.patch
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-libs/freeipmi/files/freeipmi-0.5.6-as_needed.patch?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-libs/freeipmi/files/freeipmi-0.5.6-as_needed.patch?rev=1.1&content-type=text/plain
Index: freeipmi-0.5.6-as_needed.patch
===================================================================
--- ipmimonitoring/src/ipmimonitoring/Makefile.am.orig 2008-04-02 16:54:29.000000000 +0200
+++ ipmimonitoring/src/ipmimonitoring/Makefile.am 2008-04-02 16:55:00.000000000 +0200
@@ -23,8 +23,8 @@
../../../common/src/libllnlcommon.la \
../libipmimonitoring/libipmimonitoring.la \
../../../common/src/libpstdout.la \
- ../../../ipmidetect/src/libipmidetect/libipmidetect.la \
../../../common/src/libhostrange.la \
+ ../../../ipmidetect/src/libipmidetect/libipmidetect.la \
../../../common/src/libtoolcommon.la \
../../../common/src/libcbuf.la
1.1 sys-libs/freeipmi/files/bmc-watchdog.initd
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-libs/freeipmi/files/bmc-watchdog.initd?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-libs/freeipmi/files/bmc-watchdog.initd?rev=1.1&content-type=text/plain
Index: bmc-watchdog.initd
===================================================================
#!/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
}
1.1 sys-libs/freeipmi/files/freeipmi-0.5.6-missing_syslog_include.patch
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-libs/freeipmi/files/freeipmi-0.5.6-missing_syslog_include.patch?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-libs/freeipmi/files/freeipmi-0.5.6-missing_syslog_include.patch?rev=1.1&content-type=text/plain
Index: freeipmi-0.5.6-missing_syslog_include.patch
===================================================================
--- common/src/ipmi-sdr-cache.c.orig 2008-04-02 15:03:01.000000000 +0200
+++ common/src/ipmi-sdr-cache.c 2008-04-02 15:03:46.000000000 +0200
@@ -27,6 +27,7 @@
#if STDC_HEADERS
#include <string.h>
#endif /* STDC_HEADERS */
+#include <syslog.h>
#include <sys/types.h>
#include <sys/stat.h>
#if HAVE_UNISTD_H
--
gentoo-commits@lists.gentoo.org mailing list
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2008-04-22 9:44 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-04-22 9:44 [gentoo-commits] gentoo-x86 commit in sys-libs/freeipmi/files: bmc-watchdog.confd ipmidetectd.initd freeipmi-0.5.6-as_needed.patch bmc-watchdog.initd freeipmi-0.5.6-missing_syslog_include.patch Tiziano Mueller (dev-zero)
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox