David Eastcott <[EMAIL PROTECTED]> writes:
> 1. drakconf - unable to create auto install disk, error:
> Undefined subroutine &main::eplanations at /usr/sbin/drakautoinst line 81
does this patch fix it ? (apply as root in /usr/sbin with:
"patch -p1 < /where/is/this/patch/expl.diff"
Index: standalone/drakautoinst
===================================================================
RCS file: /cooker/gi/perl-install/standalone/drakautoinst,v
retrieving revision 1.24
diff -u -3 -p -r1.24 drakautoinst
--- standalone/drakautoinst 2002/08/15 07:48:37 1.24
+++ standalone/drakautoinst 2002/08/25 14:07:42
@@ -78,7 +78,7 @@ my $floppy = detect_devices::floppy();
my $dev = devices::make($floppy);
$in->ask_okcancel('', _("Insert a blank floppy in drive %s", $floppy), 1) or quit_global($in, 0);
{
- explanations(_("Creating auto install floppy"));
+ standalone::explanations(_("Creating auto install floppy"));
my $w = $in->wait_message('', _("Creating auto install floppy"));
commands::dd("if=$imagefile", "of=$dev", "bs=1440", "count=1024");
common::sync();