summaryrefslogtreecommitdiff
path: root/sys-apps/edac-utils/files/edac.init
blob: 23318b37e10c35b16f6c281042592b861376ea20 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/sbin/openrc-run
# Copyright 2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
command=/usr/bin/edac-ctl

start() {
	ebegin "Registering edac-utils labels"
	/usr/sbin/edac-ctl --register-labels
	eend $?
}

stop() {
	ebegin "Unregistering edac-utils labels"
	/usr/sbin/edac-ctl --unload
	eend $?
}