Package: fai-client
Version: 3.2
Severity: wishlist
Tags: patch
Hello,
I've patched setup_harddisks to let me set some ext2 format options
in disc partitionment files through setup_harddisks : -L <label>, -b
<block_size> and -v. Can you include it in the official fai-client
package ?
with regards,
Fred.
-- System Information:
Debian Release: 4.0
APT prefers etch
APT policy: (990, 'etch'), (990, 'stable'), (800, 'unstable'), (800,
'testing')
Architecture: i386 (i686)
Shell: /bin/sh linked to /bin/bash
Kernel: Linux 2.6.25-svi
Locale: [EMAIL PROTECTED], [EMAIL PROTECTED] (charmap=ISO-8859-15)
Versions of packages fai-client depends on:
ii file 4.17-5etch3 Determines file type using "magic"
ii perl 5.8.8-7etch3 Larry Wall's Practical Extraction
fai-client recommends no packages.
-- no debconf information
--- setup_harddisks.orig 2008-06-02 13:48:34.000000000 +0200
+++ setup_harddisks 2008-06-02 13:53:01.000000000 +0200
@@ -854,6 +854,9 @@
($MPOptions{$mountpoint} =~ /(\-i\s*\d+)\b/) && ($command .= "
$1");
($MPOptions{$mountpoint} =~ /(\-m\s*\d+)\b/) && ($command .= "
$1");
($MPOptions{$mountpoint} =~ /(\-j)\b/) && ($command .= " $1");
+ ($MPOptions{$mountpoint} =~ /(\-b\s*\d+)\b/) && ($command .= "
$1");
+ ($MPOptions{$mountpoint} =~ /(\-L\s*\S+)\b/) && ($command .= "
$1");
+ ($MPOptions{$mountpoint} =~ /(\-v)\b/) && ($command .= " $1");
$command .= " /dev/$device";
print " $command\n";
if ($test != 1){