blob: 3647ff498d688c32f711ec16d727d257a5cf53d1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#!/sbin/openrc-run
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
depend() {
need localmount
before net
}
start() {
ebegin "Starting Dynamic Kernel Module Support "
/usr/lib/dkms/dkms_autoinstaller start
eend 0
}
status() {
/usr/lib/dkms/dkms_autoinstaller status
}
|