Package-Manager: Portage-2.3.6, Repoman-2.3.1
#!/sbin/openrc-run
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
-depend() {
- use net
-}
+command="/usr/bin/Wnn4/jserver"
-start() {
- ebegin "Starting up ${SERVICE}"
- /usr/bin/Wnn4/jserver &>/dev/null
- if [ $? -eq 15 ]; then
- true;
- else
- false;
- fi
- eend 0
+depend() {
+ use logger
+ need net
}
stop() {
- ebegin "Stopping ${SERVICE}"
- /usr/bin/Wnn4/wnnkill &> /dev/null
- eend $? "Failed to stop ${SERVICE}"
+ ebegin "Stopping ${name:-${RC_SVCNAME}}"
+ /usr/bin/Wnn4/wnnkill
+ eend ${?}
}