summaryrefslogtreecommitdiff
path: root/dev-db/cockroach/files/cockroach.initd
diff options
context:
space:
mode:
authorV3n3RiX <venerix@redcorelinux.org>2018-07-14 20:57:42 +0100
committerV3n3RiX <venerix@redcorelinux.org>2018-07-14 20:57:42 +0100
commit1798c4aeca70ac8d0a243684d6a798fbc65735f8 (patch)
treee48e19cb6fa03de18e1c63e1a93371b7ebc4eb56 /dev-db/cockroach/files/cockroach.initd
parentd87262dd706fec50cd150aab3e93883b6337466d (diff)
gentoo resync : 14.07.2018
Diffstat (limited to 'dev-db/cockroach/files/cockroach.initd')
-rw-r--r--dev-db/cockroach/files/cockroach.initd23
1 files changed, 0 insertions, 23 deletions
diff --git a/dev-db/cockroach/files/cockroach.initd b/dev-db/cockroach/files/cockroach.initd
deleted file mode 100644
index 3629cb6605fa..000000000000
--- a/dev-db/cockroach/files/cockroach.initd
+++ /dev/null
@@ -1,23 +0,0 @@
-#!/sbin/openrc-run
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-command="/usr/bin/cockroach"
-pidfile=/run/cockroach/cockroach.pid
-command_args="start --background --log-dir=/var/log/cockroach
- --pid-file=\"${pidfile}\" ${start_args}"
-start_stop_daemon_args="--quiet --user cockroach"
-
-depend() {
- use net
-}
-
-start_pre() {
- checkpath -d -m 0755 -o cockroach:cockroach $(dirname ${pidfile})
-}
-
-stop() {
-ebegin "bringing down ${RC_SVCNAME}"
-"${command}" quit ${stop_args}
-eend $?
-}