mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-24 10:02:29 +01:00
50 lines
658 B
Text
50 lines
658 B
Text
|
#!/bin/sh
|
||
|
#
|
||
|
# /etc/rc.d/rc.mongo
|
||
|
#
|
||
|
# Start/stop/restart the mongodb server.
|
||
|
#
|
||
|
#
|
||
|
|
||
|
PID=/var/state/mongodb.pid
|
||
|
LOG=/var/log/mongodb
|
||
|
DBPATH=/var/lib/mongodb
|
||
|
|
||
|
mongo_start() {
|
||
|
mkdir -p $DBPATH
|
||
|
/usr/bin/mongod \
|
||
|
--dbpath=$DBPATH \
|
||
|
--fork \
|
||
|
--pidfilepath=$PID \
|
||
|
--logpath=$LOG \
|
||
|
--nohttpinterface
|
||
|
}
|
||
|
|
||
|
mongo_stop() {
|
||
|
kill `cat $PID`
|
||
|
rm $PID
|
||
|
}
|
||
|
|
||
|
mongo_restart() {
|
||
|
mongo_stop
|
||
|
sleep 2
|
||
|
mongo_start
|
||
|
}
|
||
|
|
||
|
case "$1" in
|
||
|
'start')
|
||
|
mongo_start
|
||
|
;;
|
||
|
'stop')
|
||
|
mongo_stop
|
||
|
;;
|
||
|
'restart')
|
||
|
mongo_restart
|
||
|
;;
|
||
|
*)
|
||
|
# Default is "start", for backwards compatibility with previous
|
||
|
# Slackware versions. This may change to a 'usage' error someday.
|
||
|
mongo_start
|
||
|
esac
|
||
|
|