Bug#369265: fai-nfsroot: fai install dies with nfs: RPC call returned error 101

2006-05-28 Thread Thomas Poehnitzsch
Package: fai-nfsroot
Version: 2.10.1
Severity: grave
Tags: patch
Justification: renders package unusable

In dhcp3-client (3.0.4-2) the file /etc/dhcp3/dhclient-script has been
moved to /sbin. As this file has to be diverted by fai-nfsroot, the
installation now fails. Please consider applying the attached trivial
patch.

Regards,
Thomas

-- System Information:
Debian Release: testing/unstable
  APT prefers unstable
  APT policy: (500, 'unstable')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.16-1-686


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#343310: lsb-core: initdutils.py breaks scanning on empty RFC822 headers

2005-12-14 Thread Thomas Poehnitzsch
Package: lsb-core
Version: 3.0-12
Severity: important
Tags: patch

When putting the RFC822 headers in the headers-dictionary,
initdutils.py breaks on empty headers instead of just skipping them.
I found this to be the case both in versions 2.0-7 (woody) and 3.0-12
(sid).

The attached patch fixes it.

As this affects vendors trying to ship lsb-compliant packages for
current distributions, I would very much favour if this bugfix makes it
into woody as well.

Thanks,
Thomas
--- /usr/lib/lsb/initdutils.py.orig 2005-12-13 18:25:32.0 +0100
+++ /usr/lib/lsb/initdutils.py  2005-12-13 18:25:54.0 +0100
@@ -80,7 +80,7 @@
 for header, body in inheaders.iteritems():
 # Ignore empty headers
 if not body.strip():
-break
+continue
 
 if header in ('Default-Start', 'Default-Stop'):
 headers[header] = map(int, body.split())