Your message dated Sat, 05 Jan 2008 12:47:07 +0000
with message-id <[EMAIL PROTECTED]>
and subject line Bug#459203: fixed in startupmanager 1.9.9-2
has caused the attached Bug report to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what I am
talking about this indicates a serious mail system misconfiguration
somewhere.  Please contact me immediately.)

Debian bug tracking system administrator
(administrator, Debian Bugs database)

--- Begin Message ---
Package: startupmanager
Version: 1.9.9-1
Severity: important
User: [EMAIL PROTECTED]
Usertags: origin-ubuntu, ubuntu-patch, hardy, patch

If default entry to boot in menu.lst is bigger than the total number of entries, startupmanager crashes with "IndexError: list index out of range".

The attached patch fixes the problem exporting 0 as the default entry when menu.lst is broken.

Link to the bug report in Launchpad: https://bugs.edge.launchpad.net/ubuntu/+source/startupmanager/+bug/179555
=== modified file 'bootconfig/grub_legacy.py'
--- bootconfig/grub_legacy.py	2008-01-01 11:58:56 +0000
+++ bootconfig/grub_legacy.py	2008-01-01 11:59:06 +0000
@@ -426,7 +426,10 @@
         default_boot = self.default_boot
         titles = self.titles
         if default_boot != -1:
-            return titles[default_boot]
+            if default_boot < len(titles):
+                return titles[default_boot]
+            return titles[0]
         return -1
 
     def get_titles(self):


--- End Message ---
--- Begin Message ---
Source: startupmanager
Source-Version: 1.9.9-2

We believe that the bug you reported is fixed in the latest version of
startupmanager, which is due to be installed in the Debian FTP archive:

startupmanager_1.9.9-2.diff.gz
  to pool/main/s/startupmanager/startupmanager_1.9.9-2.diff.gz
startupmanager_1.9.9-2.dsc
  to pool/main/s/startupmanager/startupmanager_1.9.9-2.dsc
startupmanager_1.9.9-2_all.deb
  to pool/main/s/startupmanager/startupmanager_1.9.9-2_all.deb



A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to [EMAIL PROTECTED],
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Marco Rodrigues <[EMAIL PROTECTED]> (supplier of updated startupmanager package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing [EMAIL PROTECTED])


-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

Format: 1.7
Date: Sat, 05 Jan 2008 13:32:07 +0100
Source: startupmanager
Binary: startupmanager
Architecture: source all
Version: 1.9.9-2
Distribution: unstable
Urgency: low
Maintainer: Python Applications Packaging Team <[EMAIL PROTECTED]>
Changed-By: Marco Rodrigues <[EMAIL PROTECTED]>
Description: 
 startupmanager - Grub and Splash screen configuration
Closes: 459203
Changes: 
 startupmanager (1.9.9-2) unstable; urgency=low
 .
   [ Marco Rodrigues ]
   * Add version check to cdbs, debhelper and python-all-dev.
   * Update Standards-Version to 3.7.3.
   * Bump debhelper to version 0.5.38.
 .
   [ Kumar Appaiah ]
   * debian/patches:
     + Add 01_menu_checklength.diff to fix failure if default
       entry to boot is bigger than total. Thanks to Andrea Colangelo
       for the patch. (Closes: #459203)
   * debian/copyright:
     + Convert to UTF-8.
   * debian/rules:
     + Remove /usr/lib directory, as it is empty.
   * debian/control:
     + Remove myself from uploaders.
Files: 
 ebd58bae98e7ed1b317ac475d80928fa 1059 utils optional startupmanager_1.9.9-2.dsc
 62be0cb38b2f8eab14f695d41f84aa4f 3400 utils optional 
startupmanager_1.9.9-2.diff.gz
 7d8ca80e2546cc87dc214fc56a55dad9 83458 utils optional 
startupmanager_1.9.9-2_all.deb

-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.6 (GNU/Linux)

iD8DBQFHf3q/B01zfu119ZkRAoVCAKDSZsuYpR+JXAfSdDNn/jsu+hDBoQCeLjq/
6/X3pVp+vASYFLfJJDjYQ+U=
=yu+L
-----END PGP SIGNATURE-----



--- End Message ---

Reply via email to