summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.gitignore5
-rw-r--r--debian/changelog2
-rw-r--r--debian/files2
-rw-r--r--debian/postinst2
-rwxr-xr-x[-rw-r--r--]debian/rules8
5 files changed, 12 insertions, 7 deletions
diff --git a/.gitignore b/.gitignore
index e815bcebbb5..1cdaf0f3f06 100644
--- a/.gitignore
+++ b/.gitignore
@@ -81,3 +81,8 @@ authTest
perftest
clientTest
+#debian
+build-stamp
+configure-stamp
+debian/mongodb
+debian/mongodb.*
diff --git a/debian/changelog b/debian/changelog
index 15a806665b0..3335350f356 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,4 +1,4 @@
-mongodb (0.9.3-1) unstable; urgency=low
+mongodb (0.9.7) unstable; urgency=low
* Initial release
diff --git a/debian/files b/debian/files
index 1511a4b2e38..2e289597a1c 100644
--- a/debian/files
+++ b/debian/files
@@ -1 +1 @@
-mongodb_0.9.3-1_i386.deb devel optional
+mongodb_0.9.7_amd64.deb devel optional
diff --git a/debian/postinst b/debian/postinst
index 409d3cfe724..7f91b1e0d98 100644
--- a/debian/postinst
+++ b/debian/postinst
@@ -22,7 +22,7 @@ case "$1" in
configure)
# create a mongodb group and user
if ! grep -q mongodb /etc/passwd; then
- useradd --password mongodb --user-group mongodb
+ useradd --user-group mongodb
fi
# create db
diff --git a/debian/rules b/debian/rules
index 9380efe7067..30da478af20 100644..100755
--- a/debian/rules
+++ b/debian/rules
@@ -13,7 +13,7 @@
configure: configure-stamp
configure-stamp:
dh_testdir
- # Add here commands to configure the package.
+ # Add here commands to configure the package.
touch configure-stamp
@@ -23,9 +23,9 @@ build: build-stamp
build-stamp: configure-stamp
dh_testdir
- # Add here commands to compile the package.
- scons --distname=deb --nojni
- #docbook-to-man debian/mongodb.sgml > mongodb.1
+ # Add here commands to compile the package.
+ scons
+ #docbook-to-man debian/mongodb.sgml > mongodb.1
touch $@