summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRichard Kreuter <richard@10gen.com>2010-03-26 12:15:12 -0400
committerRichard Kreuter <richard@10gen.com>2010-03-26 12:15:12 -0400
commitfca1962ce402aac501512b780c81c52d2c0778da (patch)
tree398ccfb38c3965c2d607336cbe09b2901fe67268
parent84eab5e950fc267f82fb68bd0b34647876994ac3 (diff)
downloadmongo-fca1962ce402aac501512b780c81c52d2c0778da.tar.gz
Backport to 1.2 of bdcd668. SERVER-834
-rw-r--r--debian/mongodb.upstart2
1 files changed, 1 insertions, 1 deletions
diff --git a/debian/mongodb.upstart b/debian/mongodb.upstart
index db061d57e64..ca6f9b75cf7 100644
--- a/debian/mongodb.upstart
+++ b/debian/mongodb.upstart
@@ -11,5 +11,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 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/mongodb.conf; fi
end script