mirror of
https://github.com/mongodb/mongo.git
synced 2024-12-01 01:21:03 +01:00
16 lines
446 B
Plaintext
16 lines
446 B
Plaintext
# Ubuntu upstart file at /etc/init/mongodb.conf
|
|
|
|
pre-start script
|
|
mkdir -p /var/lib/mongodb/
|
|
mkdir -p /var/log/mongodb/
|
|
end script
|
|
|
|
start on runlevel [2345]
|
|
stop on runlevel [06]
|
|
|
|
script
|
|
ENABLE_MONGODB="yes"
|
|
if [ -f /etc/default/mongodb ]; then . /etc/default/mongodb; fi
|
|
if [ "x$ENABLE_MONGODB" = "xyes" ]; then start-stop-daemon --start --quiet --chuid mongodb --exec /usr/bin/mongod -- --config /etc/mongodb.conf; fi
|
|
end script
|