blob: 9277d1cf33dd8fd1bd3dac85958b0f73053d9c7d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#!/sbin/openrc-run
# Copyright 1999-2026 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
export COUCHDB_ARGS_FILE=${COUCHDB_ARGS_FILE:-/etc/couchdb/vm.args}
export COUCHDB_INI_FILES=${COUCHDB_INI_FILES:-"/etc/couchdb/default.ini /etc/couchdb/local.ini"}
pidfile="/run/${RC_SVCNAME}.pid"
command="/usr/lib/couchdb/bin/couchdb"
command_args="${COUCHDB_OPTS}"
command_background="true"
command_user="couchdb"
name="CouchDB Database"
depend() {
use net
}
|