2016-02-12 12:58:33 +01:00
|
|
|
#!/sbin/openrc-run
|
|
|
|
# Copyright 1999-2016 Gentoo Foundation
|
2014-05-07 20:52:11 +02:00
|
|
|
# Distributed under the terms of the GNU General Public License v2
|
2016-02-12 12:58:33 +01:00
|
|
|
# $Id$
|
2014-05-07 20:52:11 +02:00
|
|
|
|
|
|
|
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 $?
|
|
|
|
}
|