mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-09-24 04:59:14 -07:00
sys-power/nut: remove unused patch/files
Closes: https://github.com/gentoo/gentoo/pull/3870
This commit is contained in:
committed by
David Seifert
parent
29e972873b
commit
26f8ebb05c
@@ -1,38 +0,0 @@
|
||||
#!/sbin/openrc-run
|
||||
# Copyright 1999-2016 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Id$
|
||||
|
||||
extra_started_commands="reload"
|
||||
|
||||
pidfile=/var/lib/nut/upsd.pid
|
||||
bin=/usr/sbin/upsd
|
||||
|
||||
depend() {
|
||||
need net
|
||||
before upsmon
|
||||
after upsdrv
|
||||
}
|
||||
|
||||
start() {
|
||||
ebegin "Starting upsd"
|
||||
# clean up first
|
||||
pkill -u root,nut -x ${bin}
|
||||
sleep 1
|
||||
rm -f ${pidfile}
|
||||
# now start up
|
||||
start-stop-daemon --start --quiet --exec ${bin}
|
||||
eend $?
|
||||
}
|
||||
|
||||
stop() {
|
||||
ebegin "Stopping upsd"
|
||||
start-stop-daemon --stop --quiet --pidfile ${pidfile}
|
||||
eend $?
|
||||
}
|
||||
|
||||
reload() {
|
||||
ebegin "Reloading upsd"
|
||||
start-stop-daemon --stop --signal HUP --oknodo --quiet --pidfile ${pidfile}
|
||||
eend $?
|
||||
}
|
||||
@@ -1,30 +0,0 @@
|
||||
#!/sbin/openrc-run
|
||||
# Copyright 1999-2011 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Id$
|
||||
|
||||
extra_started_commands="reload"
|
||||
|
||||
pidfile=/var/run/upsmon.pid
|
||||
bin=/usr/sbin/upsmon
|
||||
|
||||
depend() {
|
||||
need net
|
||||
}
|
||||
|
||||
start() {
|
||||
ebegin "Starting upsmon"
|
||||
start-stop-daemon --start --quiet --exec ${bin}
|
||||
eend $?
|
||||
}
|
||||
|
||||
stop() {
|
||||
ebegin "Stopping upsmon"
|
||||
start-stop-daemon --stop --quiet --pidfile ${pidfile}
|
||||
eend $?
|
||||
}
|
||||
reload() {
|
||||
ebegin "Reloading upsd"
|
||||
start-stop-daemon --stop --signal HUP --oknodo --quiet --pidfile ${pidfile}
|
||||
eend $?
|
||||
}
|
||||
@@ -1,21 +0,0 @@
|
||||
http://bugs.gentoo.org/show_bug.cgi?id=318937
|
||||
http://boxster.ghz.cc/projects/nut/changeset/2407
|
||||
|
||||
Index: /trunk/drivers/libhid.c
|
||||
===================================================================
|
||||
--- /trunk/drivers/libhid.c (revision 2336)
|
||||
+++ /trunk/drivers/libhid.c (revision 2407)
|
||||
@@ -142,5 +142,5 @@
|
||||
int id = pData->ReportID;
|
||||
int r;
|
||||
- unsigned char buf[SMALLBUF];
|
||||
+ unsigned char buf[8]; /* Maximum size for low-speed USB devices */
|
||||
|
||||
if (rbuf->ts[id] + age > time(NULL)) {
|
||||
@@ -470,5 +470,5 @@
|
||||
int HIDGetEvents(hid_dev_handle_t udev, HIDData_t **event, int eventsize)
|
||||
{
|
||||
- unsigned char buf[SMALLBUF];
|
||||
+ unsigned char buf[8]; /* Maximum size for low-speed USB devices */
|
||||
int itemCount = 0;
|
||||
int buflen, r, i;
|
||||
Reference in New Issue
Block a user