summaryrefslogtreecommitdiff
blob: 9f57c80f2f05f39a5ba5e40214502bdfa6c81a33 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#!/sbin/runscript
# Copyright 1999-2013 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 $?
}