summaryrefslogtreecommitdiff
path: root/debian/mongodb.upstart
diff options
context:
space:
mode:
Diffstat (limited to 'debian/mongodb.upstart')
-rw-r--r--debian/mongodb.upstart4
1 files changed, 2 insertions, 2 deletions
diff --git a/debian/mongodb.upstart b/debian/mongodb.upstart
index 1fc9969fe39..9a3b50835af 100644
--- a/debian/mongodb.upstart
+++ b/debian/mongodb.upstart
@@ -1,4 +1,4 @@
-# Ubuntu upstart file at /etc/init/mongodb.conf
+# Ubuntu upstart file at /etc/init/mongod.conf
limit nofile 20000 20000
@@ -15,5 +15,5 @@ stop on runlevel [06]
script
ENABLE_MONGODB="yes"
if [ -f /etc/default/mongodb ]; then . /etc/default/mongodb; fi
- if [ "x$ENABLE_MONGODB" = "xyes" ]; then exec start-stop-daemon --start --quiet --chuid mongodb --exec /usr/bin/mongod -- --config /etc/mongodb.conf; fi
+ if [ "x$ENABLE_MONGODB" = "xyes" ]; then exec start-stop-daemon --start --quiet --chuid mongodb --exec /usr/bin/mongod -- --config /etc/mongod.conf; fi
end script