summaryrefslogtreecommitdiffstats
path: root/gentoo/trinity-base/lisa/files/lisa
blob: eeeae68c72c16c3ed5be7124ca16f29530eea0e8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#!/sbin/runscript
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2

depend() {
    use net
}

start() {
    ebegin "Starting lisa"
    start-stop-daemon --start -x _TDEDIR_/bin/lisa -q -- $LISACONF 1>/dev/null
    eend $? "Failed to start lisa"
}

stop() {
    ebegin "Stopping lisa"
    start-stop-daemon --stop -x _TDEDIR_/bin/lisa -q
    eend $? "Failed to stop lisa"
}