Processing of tzsetup_0.35_i386.changes

2011-12-26 Thread Debian FTP Masters
tzsetup_0.35_i386.changes uploaded successfully to ftp-master.debian.org
along with the files:
  tzsetup_0.35.dsc
  tzsetup_0.35.tar.gz
  tzsetup-udeb_0.35_all.udeb

Greetings,

Your Debian queue daemon (running on host ravel.debian.org)


-- 
To UNSUBSCRIBE, email to debian-boot-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1rfdyt-0003lq...@ravel.debian.org



Processing of tzsetup_0.35_i386.changes

2011-12-26 Thread Debian FTP Masters
tzsetup_0.35_i386.changes uploaded successfully to localhost
along with the files:
  tzsetup_0.35.dsc
  tzsetup_0.35.tar.gz
  tzsetup-udeb_0.35_all.udeb

Greetings,

Your Debian queue daemon (running on host franck.debian.org)


-- 
To UNSUBSCRIBE, email to debian-boot-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1rfe02-0007mi...@franck.debian.org



Bug#653305: partman-auto: Please provide hook when disk is too small for the expert recipe

2011-12-26 Thread Petter Reinholdtsen

Package: partman-auto
Version: 96
Severity: important
Tags: patch
User: debian-...@lists.debian.org
Usertags: debian-edu

When installing a Debian Edu
main-server+workstation+thin-client-server on a virtual machine with
20 GB virtual disk, the partitioning recipe specified by Debian Edu is
silently ignored and the wrong partitioning setup is used (only one
partition for /).

We would like to be able to detect this in Debian Edu, and ask the
user how to continue, but the partman-auto code lack any hooks to
allow us to do this.

A hook like this might solve it.  Please include in a future version
of partman-auto.  Is this acceptable for Squeeze?

--- a/lib/recipes.sh
+++ b/lib/recipes.sh
@@ -333,6 +333,14 @@ choose_recipe () {
else
logger -t partman-auto \
Available disk space ($free_size) too small for expert 
recipe ($(min_size)); skipping
+   hookdir=/lib/partman/not-enough-space.d
+   if [ -d $hookdir ] ; then
+   for h in $hookdir/* ; do
+   if [ -x $h ] ; then
+   $h $recipe $free_size $min_size
+   fi
+   done
+   fi
fi
fi
 
-- 
Happy hacking
Petter Reinholdtsen



-- 
To UNSUBSCRIBE, email to debian-boot-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/2flk45j1bsx@login2.uio.no



tzsetup_0.35_i386.changes ACCEPTED into unstable

2011-12-26 Thread Debian FTP Masters



Accepted:
tzsetup-udeb_0.35_all.udeb
  to main/t/tzsetup/tzsetup-udeb_0.35_all.udeb
tzsetup_0.35.dsc
  to main/t/tzsetup/tzsetup_0.35.dsc
tzsetup_0.35.tar.gz
  to main/t/tzsetup/tzsetup_0.35.tar.gz


Override entries for your package:
tzsetup-udeb_0.35_all.udeb - optional debian-installer
tzsetup_0.35.dsc - source misc

Announcing to debian-devel-chan...@lists.debian.org


Thank you for your contribution to Debian.


-- 
To UNSUBSCRIBE, email to debian-boot-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1rfecm-ct...@franck.debian.org



Bug#653305: partman-auto: Please provide hook when disk is too small for the expert recipe

2011-12-26 Thread Petter Reinholdtsen
I discovered a typo in my patch.  $min_size should have been
$(min_size), and this lead me to discover that the min_size() function
would calculate the size every time it is called.  To avoid wasting
that time, I store the value in a variable at least for the duration
of the if block.  Here is an updated patch.

--- a/lib/recipes.sh
+++ b/lib/recipes.sh
@@ -328,11 +328,20 @@ choose_recipe () {
if [ ! -z $RET ]  [ -e $RET ]; then
recipe=$RET
decode_recipe $recipe $type
-   if [ $(min_size) -le $free_size ]; then
+   min_size=$(min_size)
+   if [ $min_size -le $free_size ]; then
return 0
else
logger -t partman-auto \
-   Available disk space ($free_size) too small for expert 
recipe ($(min_size)); skipping
+   Available disk space ($free_size) too small for expert 
recipe ($min_size); skipping
+   hookdir=/lib/partman/not-enough-space.d
+   if [ -d $hookdir ] ; then
+   for h in $hookdir/* ; do
+   if [ -x $h ] ; then
+   $h $recipe $free_size $min_size
+   fi
+   done
+   fi
fi
fi
 
-- 
Happy hacking
Petter Reinholdtsen



-- 
To UNSUBSCRIBE, email to debian-boot-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/20111226175318.gm9...@login2.uio.no



Processing of partman-base_153_i386.changes

2011-12-26 Thread Debian FTP Masters
partman-base_153_i386.changes uploaded successfully to ftp-master.debian.org
along with the files:
  partman-base_153.dsc
  partman-base_153.tar.gz
  partman-base_153_i386.udeb
  partman-utils_153_i386.udeb

Greetings,

Your Debian queue daemon (running on host ravel.debian.org)


-- 
To UNSUBSCRIBE, email to debian-boot-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1rfeln-0007d5...@ravel.debian.org



Processing of partman-base_153_i386.changes

2011-12-26 Thread Debian FTP Masters
partman-base_153_i386.changes uploaded successfully to localhost
along with the files:
  partman-base_153.dsc
  partman-base_153.tar.gz
  partman-base_153_i386.udeb
  partman-utils_153_i386.udeb

Greetings,

Your Debian queue daemon (running on host franck.debian.org)


-- 
To UNSUBSCRIBE, email to debian-boot-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1rfemi-00084u...@franck.debian.org



partman-base_153_i386.changes ACCEPTED into unstable

2011-12-26 Thread Debian FTP Masters



Accepted:
partman-base_153.dsc
  to main/p/partman-base/partman-base_153.dsc
partman-base_153.tar.gz
  to main/p/partman-base/partman-base_153.tar.gz
partman-base_153_i386.udeb
  to main/p/partman-base/partman-base_153_i386.udeb
partman-utils_153_i386.udeb
  to main/p/partman-base/partman-utils_153_i386.udeb


Override entries for your package:
partman-base_153.dsc - source debian-installer
partman-base_153_i386.udeb - standard debian-installer
partman-utils_153_i386.udeb - extra debian-installer

Announcing to debian-devel-chan...@lists.debian.org


Thank you for your contribution to Debian.


-- 
To UNSUBSCRIBE, email to debian-boot-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1rfet8-0001z4...@franck.debian.org



Processing of iso-scan_1.37_i386.changes

2011-12-26 Thread Debian FTP Masters
iso-scan_1.37_i386.changes uploaded successfully to ftp-master.debian.org
along with the files:
  iso-scan_1.37.dsc
  iso-scan_1.37.tar.gz
  iso-scan_1.37_all.udeb
  load-iso_1.37_all.udeb

Greetings,

Your Debian queue daemon (running on host ravel.debian.org)


-- 
To UNSUBSCRIBE, email to debian-boot-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1rfezx-0008j0...@ravel.debian.org



Processing of iso-scan_1.37_i386.changes

2011-12-26 Thread Debian FTP Masters
iso-scan_1.37_i386.changes uploaded successfully to localhost
along with the files:
  iso-scan_1.37.dsc
  iso-scan_1.37.tar.gz
  iso-scan_1.37_all.udeb
  load-iso_1.37_all.udeb

Greetings,

Your Debian queue daemon (running on host franck.debian.org)


-- 
To UNSUBSCRIBE, email to debian-boot-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1rff1i-0002sz...@franck.debian.org



iso-scan_1.37_i386.changes ACCEPTED into unstable

2011-12-26 Thread Debian FTP Masters



Accepted:
iso-scan_1.37.dsc
  to main/i/iso-scan/iso-scan_1.37.dsc
iso-scan_1.37.tar.gz
  to main/i/iso-scan/iso-scan_1.37.tar.gz
iso-scan_1.37_all.udeb
  to main/i/iso-scan/iso-scan_1.37_all.udeb
load-iso_1.37_all.udeb
  to main/i/iso-scan/load-iso_1.37_all.udeb


Override entries for your package:
iso-scan_1.37.dsc - source debian-installer
iso-scan_1.37_all.udeb - optional debian-installer
load-iso_1.37_all.udeb - extra debian-installer

Announcing to debian-devel-chan...@lists.debian.org


Thank you for your contribution to Debian.


-- 
To UNSUBSCRIBE, email to debian-boot-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1rff6s-00036x...@franck.debian.org



linux download

2011-12-26 Thread Nikhil M
hi,
my lap is core i5,4gb ram and 320 hdd
i want to use linux so planned to download iso(DVD) so i have to download
all those images?which one i need to download in this list

   - amd64 http://cdimage.debian.org/debian-cd/6.0.3/amd64/iso-dvd/
   - armel http://cdimage.debian.org/debian-cd/6.0.3/armel/iso-dvd/
   - 
kfreebsd-i386http://cdimage.debian.org/debian-cd/6.0.3/kfreebsd-i386/iso-dvd/
   - 
kfreebsd-amd64http://cdimage.debian.org/debian-cd/6.0.3/kfreebsd-amd64/iso-dvd/
   - i386 http://cdimage.debian.org/debian-cd/6.0.3/i386/iso-dvd/
   - ia64 http://cdimage.debian.org/debian-cd/6.0.3/ia64/iso-dvd/
   - mips http://cdimage.debian.org/debian-cd/6.0.3/mips/iso-dvd/
   - mipsel http://cdimage.debian.org/debian-cd/6.0.3/mipsel/iso-dvd/
   - powerpc http://cdimage.debian.org/debian-cd/6.0.3/powerpc/iso-dvd/
   - sparc http://cdimage.debian.org/debian-cd/6.0.3/sparc/iso-dvd/
   - s390 http://cdimage.debian.org/debian-cd/6.0.3/s390/iso-dvd/
   - source http://cdimage.debian.org/debian-cd/6.0.3/source/iso-dvd/
   - multi-archhttp://cdimage.debian.org/debian-cd/6.0.3/multi-arch/iso-dvd/


http://cdimage.debian.org/debian-cd/6.0.3/i386/iso-dvd/
please replay i dont know which one i have to download
-- 
*Nikhil M
Department of Physics
Pondicherry University
*