You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
tde-packaging-gentoo/trinity-base/lisa/files/lisa

20 lines
431 B

#!/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"
}