You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/sys-apps/edac-utils/files/edac.init

17 lines
336 B

#!/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 $?
}