blob: 316b28ad71432583f96e821d722becc2da6ee769 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
#!/sbin/openrc-run
# Copyright 1999-2018 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
description="Loads Motherboard DIMM labels into EDAC driver"
depend() {
keyword -stop
need sysfs
}
command="/usr/sbin/ras-mc-ctl"
command_args="--register-labels"
start() {
ebegin "Loading Motherboard DIMM labels into EDAC driver"
"${command}" "${command_args}"
eend $?
}
stop() {
:
}
|