Bug#337081: multipath-tools: bashism in /etc/udev/scripts/multipath.sh

2006-01-11 Thread Steve Langasek
Hi-ho, I've prepared an NMU for this bug, and will be uploading shortly. Please find the final patch attached. In addition to the bashism fix, it includes a fix to the upstream makefile for compatibility with the new make's line continuation rules. Thanks, -- Steve Langasek G

Bug#337081: multipath-tools: bashism in /etc/udev/scripts/multipath.sh - errors in patch

2005-11-27 Thread Clint Adams
> hmm, > then the Solaris 10 sh is not a posix sh ;) Solaris /bin/sh has never been posix-conformant. That's why they have /usr/xpg4/bin/sh . -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]

Bug#337081: multipath-tools: bashism in /etc/udev/scripts/multipath.sh - errors in patch

2005-11-27 Thread Bernd Zeimetz
> Yes, I definitely missed the ";;"'s, but the opening parens should be > supported by any POSIX sh. hmm, then the Solaris 10 sh is not a posix sh ;) -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]

Bug#337081: multipath-tools: bashism in /etc/udev/scripts/multipath.sh - errors in patch

2005-11-27 Thread Clint Adams
> there're some ;; missing in the patch, also the opening ( are not sh > compatible. Yes, I definitely missed the ";;"'s, but the opening parens should be supported by any POSIX sh. -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED

Bug#337081: multipath-tools: bashism in /etc/udev/scripts/multipath.sh - errors in patch

2005-11-27 Thread Bernd Zeimetz
Hi, there're some ;; missing in the patch, also the opening ( are not sh compatible. $ case "foo" in (bar) echo foo;; (*) echo bar;; esac syntax error: `(' unexpected $ case "foo" in bar) echo foo;; *) echo bar;; esac bar $ I think it was suppos

Bug#337081: multipath-tools: bashism in /etc/udev/scripts/multipath.sh

2005-11-02 Thread Clint Adams
Package: multipath-tools Severity: serious Justification: Policy 10.4 Tags: patch ${1:0:3} is a bashism. Here's one way around that. --- /tmp/multipath.sh 2005-11-02 06:53:18.0 -0500 +++ /etc/udev/scripts/multipath.sh 2005-11-02 06:53:11.0 -0500 @@ -4,11 +4,12 @@ exit