summaryrefslogtreecommitdiff
path: root/sci-mathematics/rstudio/files/rstudio-server.initd
diff options
context:
space:
mode:
Diffstat (limited to 'sci-mathematics/rstudio/files/rstudio-server.initd')
-rw-r--r--sci-mathematics/rstudio/files/rstudio-server.initd19
1 files changed, 0 insertions, 19 deletions
diff --git a/sci-mathematics/rstudio/files/rstudio-server.initd b/sci-mathematics/rstudio/files/rstudio-server.initd
deleted file mode 100644
index 96c1e4f210c1..000000000000
--- a/sci-mathematics/rstudio/files/rstudio-server.initd
+++ /dev/null
@@ -1,19 +0,0 @@
-#!/sbin/openrc-run
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-depend() {
- need net
-}
-
-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 $?
-}