gentoo-ebuilds/app-text/languagetool/files/languagetool.initd
Sam James 0b476bb392
app-text/languagetool: fix start-stop-daemon args
Closes: https://bugs.gentoo.org/817398
Signed-off-by: Sam James <sam@gentoo.org>
2023-09-25 03:18:52 +01:00

19 lines
472 B
Text

#!/sbin/openrc-run
# Distributed under the terms of the GNU General Public License v2
depend() {
after modules
}
start() {
ebegin "Starting languagetool [server]"
start-stop-daemon --start --background --exec /bin/bash -- /usr/bin/languagetool-server \
--config "/etc/languagetool.cfg" --allow-origin "*" --port 8081
eend $?
}
stop() {
ebegin "Stopping languagetool [server]"
start-stop-daemon --stop --exec /bin/bash -- /usr/bin/languagetool-server
eend $?
}