You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
439 B
Plaintext
20 lines
439 B
Plaintext
5 years ago
|
#!/sbin/runscript
|
||
|
# Copyright 1999-2004 Gentoo Foundation
|
||
|
# Distributed under the terms of the GNU General Public License v2
|
||
|
|
||
|
depend() {
|
||
|
use net
|
||
|
}
|
||
|
|
||
|
start() {
|
||
|
ebegin "Starting reslisa"
|
||
|
start-stop-daemon --start -x _TDEDIR_/bin/reslisa -q -- 1>/dev/null
|
||
|
eend $? "Failed to start reslisa"
|
||
|
}
|
||
|
|
||
|
stop() {
|
||
|
ebegin "Stopping reslisa"
|
||
|
start-stop-daemon --stop -x _TDEDIR_/bin/reslisa -q
|
||
|
eend $? "Failed to stop reslisa"
|
||
|
}
|