blob: 2270ec7c1f7fdc45dee684157ab94d31fcb125cd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
#!/sbin/openrc-run
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
check_config() {
if [ ! -e /etc/isapnp.conf ] ; then
eerror "You need an /etc/isapnp.conf file first"
eerror "Theres a sample in docs/isapnptools/txt"
return 1
fi
if [ ! -x /sbin/isapnp ] ; then
eerror "You're missing /sbin/isapnp; emerge sys-apps/isapnptools"
return 1
fi
return 0
}
start() {
check_config || return 1
ebegin "Configuring ISA PnP devices"
/sbin/isapnp /etc/isapnp.conf
eend $?
}
|