diff options
Diffstat (limited to 'debian/mongodb.upstart')
-rw-r--r-- | debian/mongodb.upstart | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/debian/mongodb.upstart b/debian/mongodb.upstart deleted file mode 100644 index ca6f9b7..0000000 --- a/debian/mongodb.upstart +++ /dev/null @@ -1,15 +0,0 @@ -# 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 exec start-stop-daemon --start --quiet --chuid mongodb --exec /usr/bin/mongod -- --config /etc/mongodb.conf; fi -end script |