summaryrefslogtreecommitdiff
blob: aab1757d3cf402f040cfaeccadc2fcc51d72cd4b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/sbin/openrc-run
# Copyright 1999-2013 Dirkjan Ochtman
# Distributed under the terms of the Apache License, Version 2.0

pidfile=${COUCHDB_PID_FILE}
command=${EXEC:-/usr/bin/couchdb}
command_args="-b -o ${COUCHDB_STDOUT_FILE} -e ${COUCHDB_STDERR_FILE} -p ${pidfile} ${COUCHDB_OPTIONS}"

start_stop_daemon_args="--user ${COUCHDB_USER}"

depend() {
	need net
}

start_pre() {
	checkpath -q -d -m 0755 -o ${COUCHDB_USER} /var/run/couchdb
}