Sophie

Sophie

distrib > * > cooker > x86_64 > by-pkgid > 44cd11c9db85a64302309aea96036e95 > files > 2

couchdb-1.1.0-1.x86_64.rpm

#!/bin/sh
#
# couchdb This is the init script for starting up the CouchDB server
#
# chkconfig: - 20 80
# description: Starts and stops the CouchDB daemon that handles \
#	       all database requests.

### BEGIN INIT INFO
# Provides: couchdb
# Required-Start: $local_fs $network
# Required-Stop: $local_fs $network
# Should-Start: $remote_fs
# Should-Stop: $remote_fs
# Default-Start: 
# Default-Stop: 0 1 2 3 4 5 6
# Short-Description: start and stop CouchDB database server
# Description: Apache CouchDB is a distributed, fault-tolerant and 
#              schema-free document-oriented database accessible 
#              via a RESTful HTTP/JSON API
### END INIT INFO

# Source function library.
. /etc/rc.d/init.d/functions

exec="/usr/bin/couchdb"
prog="couchdb"
config="/etc/sysconfig/couchdb"

[ -e /etc/sysconfig/$prog ] && . /etc/sysconfig/$prog

lockfile=/var/lock/subsys/couchdb

start() {
    [ -x $exec ] || exit 5
    [ -f $config ] || exit 6
    gprintf "Starting %s: " "$prog"
    daemon --user couchdb "$exec -b"
    retval=$?
    echo
    [ $retval -eq 0 ] && touch $lockfile
    return $retval
}

stop() {
    gprintf "Stopping %s: " "$prog"
    daemon --user couchdb "$exec -d"
    retval=$?
    echo
    [ $retval -eq 0 ] && rm -f $lockfile
    return $retval
}

case "$1" in
    start)
        $1
        ;;
    stop)
        $1
        ;;
    restart|reload)
        stop
        start 
        ;;
    status)
        status $prog
        ;;
    condrestart)
        [ -f $lockfile ] && restart
        ;;
    *)
        gprintf "Usage: %s {start|stop|status|restart|condrestart|reload}\n" "$0"
        exit 2
esac
exit $?