mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-08-06 00:48:18 -07:00
This is a scalable open source database. For more information see the home page below. http://www.cockroachlabs.com Package-Manager: Portage-2.3.5, Repoman-2.3.1
24 lines
542 B
Plaintext
24 lines
542 B
Plaintext
#!/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 $?
|
|
}
|