blob: 07dd2f391d335ffa9d0a4e85469595fd4001058a (
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
|
#!/sbin/openrc-run
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
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 $?
}
|