#!/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/kdenetwork/files/reslisa,v 1.4 2004/07/14 22:26:56 agriffis Exp $

depend() {
    use net
}

start() {
    ebegin "Starting reslisa"
    start-stop-daemon --start -x _KDEDIR_/bin/reslisa -q -- 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"
}
