diff options
Diffstat (limited to 'debian')
-rw-r--r-- | debian/changelog | 14 | ||||
-rw-r--r-- | debian/files | 1 | ||||
-rw-r--r-- | debian/mongodb.upstart | 15 | ||||
-rw-r--r-- | debian/preinst | 37 |
4 files changed, 67 insertions, 0 deletions
diff --git a/debian/changelog b/debian/changelog index 47cf19b..c3b32b6 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,17 @@ +mongodb (1.6.5) unstable; urgency=low + + * full change log http://jira.mongodb.org/browse/SERVER/fixforversion/10207 + + -- Richard Kreuter <richard@10gen.com> Tue, 7 Dec 2010 16:56:28 -0500 + +mongodb (1.6.4) unstable; urgency=low + + * replica_sets shell helpers + * sharding chunk safety, yielding during migrate cleanup + * full change log http://jira.mongodb.org/browse/SERVER/fixforversion/10191 + + -- Richard Kreuter <richard@10gen.com> Tue, 26 Oct 2010 16:56:28 -0500 + mongodb (1.6.3) unstable; urgency=low * replica_sets slavedelay, rollback diff --git a/debian/files b/debian/files new file mode 100644 index 0000000..2e28959 --- /dev/null +++ b/debian/files @@ -0,0 +1 @@ +mongodb_0.9.7_amd64.deb devel optional diff --git a/debian/mongodb.upstart b/debian/mongodb.upstart new file mode 100644 index 0000000..ca6f9b7 --- /dev/null +++ b/debian/mongodb.upstart @@ -0,0 +1,15 @@ +# 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 diff --git a/debian/preinst b/debian/preinst new file mode 100644 index 0000000..c2d5362 --- /dev/null +++ b/debian/preinst @@ -0,0 +1,37 @@ +#!/bin/sh +# preinst script for mongodb +# +# see: dh_installdeb(1) + +set -e + +# summary of how this script can be called: +# * <new-preinst> `install' +# * <new-preinst> `install' <old-version> +# * <new-preinst> `upgrade' <old-version> +# * <old-preinst> `abort-upgrade' <new-version> +# for details, see http://www.debian.org/doc/debian-policy/ or +# the debian-policy package + + +case "$1" in + install|upgrade) + ;; + + abort-upgrade) + ;; + + *) + echo "preinst called with unknown argument \`$1'" >&2 + exit 1 + ;; +esac + +# dh_installdeb will replace this with shell code automatically +# generated by other debhelper scripts. + +#DEBHELPER# + +exit 0 + + |