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.
gentoo-overlay/sci-mathematics/rstudio/files/rstudio-server.initd

16 lines
377 B

#!/sbin/openrc-run
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
start() {
ebegin "Starting RStudio Server"
start-stop-daemon --start --quiet --exec /usr/bin/rserver
eend $?
}
stop() {
ebegin "Stopping RStudio Server"
start-stop-daemon --stop --quiet --retry=TERM/30/KILL/5 --name /usr/bin/rserver
eend $?
}