summaryrefslogtreecommitdiff
blob: c37d8851410abcb8f4a308aabfd11121d21c1402 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#!/sbin/runscript
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/kde-base/lisa/files/reslisa,v 1.1 2005/01/15 02:24:41 danarmak Exp $

depend() {
    use net
}

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

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