You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
516 B
Plaintext
25 lines
516 B
Plaintext
10 years ago
|
#!/sbin/runscript
|
||
|
# Copyright 1999-2014 Gentoo Foundation
|
||
|
# Distributed under the terms of the GNU General Public License v2
|
||
|
# $Header: $
|
||
|
|
||
|
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 $?
|
||
|
}
|