#!/sbin/runscript
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License, v2 or later
# $Header: /var/cvsroot/gentoo-x86/kde-base/kdenetwork/files/lisa,v 1.2 2003/02/14 22:44:46 vapier Exp $

depend() {
    use net
}

start() {

    ebegin "Starting lisa"
    start-stop-daemon --start -x _KDEDIR_/bin/lisa -q -- $LISACONF 1>/dev/null
    eend $? "Failed to start lisa"

}

stop() {

    ebegin "Stopping lisa"
    start-stop-daemon --stop -x _KDEDIR_/bin/lisa -q
    eend $? "Failed to stop lisa"

}
