diff --git a/debian/changelog b/debian/changelog index 17b7b89ff802541b806eb0cd2769aa0cd93b2269..834601b1bd090ae47cbe8363e287ef940e7440b7 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,16 @@ +tarantool (1.4.6+20120524-1) unstable; urgency=low + + * Fix version number. + * Fix tarantool_instance: user could not to define 'file_descriptors' + + -- Dmitry E. Oboukhov <unera@debian.org> Thu, 24 May 2012 12:57:27 +0400 + +tarantool (1.4.5+20120522-1) unstable; urgency=low + + * New git snapshot: upstream upgraded libtarantool. + + -- Dmitry E. Oboukhov <unera@debian.org> Tue, 22 May 2012 22:55:07 +0400 + tarantool (1.4.5+20120510-1) unstable; urgency=low * New git snapshot (it provides script_dir option). diff --git a/debian/control b/debian/control index 8052c362829c9d6c8e4e5d9e8b84f6b163e273e6..26a2b8ec76f9962992dbb1f4382237072c96a6d2 100644 --- a/debian/control +++ b/debian/control @@ -38,7 +38,7 @@ Package: tarantool Architecture: i386 amd64 kfreebsd-i386 kfreebsd-amd64 hurd-i386 Priority: optional Depends: ${shlibs:Depends}, ${misc:Depends}, tarantool-common -Suggests: libmr-tarantool-perl +Suggests: libmr-tarantool-perl, libdr-tarantool-perl Description: high performance key/value storage server Tarantool is an open-source NoSQL database, developed by Mail.ru. Its key properties include: diff --git a/debian/scripts/tarantool_instance b/debian/scripts/tarantool_instance index 7adc8d991eeb27e5bd3d96700ef8c8b97ee2d481..e03ee4fc31336d725efe74a9758efbd6ebe8d326 100755 --- a/debian/scripts/tarantool_instance +++ b/debian/scripts/tarantool_instance @@ -63,6 +63,10 @@ SOCKETS=`grep \ | tail -n 1 \ | sed 's/[^[:digit:]]//g'` +if test -z $SOCKETS; then + SOCKETS=1023 +fi + if ! test -x $PID_DIR; then install -otarantool -gtarantool -d -m0750 $PID_DIR fi