#!/sbin/openrc-run # Copyright 1999-2016 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Id$ DAEMON="/usr/sbin/lms" depend() { need localmount } start() { ebegin "Starting IntelĀ® Local Manageability Service" start-stop-daemon --start --exec $DAEMON \ --pidfile /run/lms.pid eend $? } stop() { ebegin "Stopping IntelĀ® Local Manageability Service" start-stop-daemon --stop --exec $DAEMON \ --pidfile /run/lms.pid eend $? }