summaryrefslogtreecommitdiffstats
path: root/perl-install/standalone/drakTermServ
diff options
context:
space:
mode:
authorStew Benedict <stewb@mandriva.org>2005-09-26 16:57:59 +0000
committerStew Benedict <stewb@mandriva.org>2005-09-26 16:57:59 +0000
commit9c2224905d0d4b6a80ee34c7c847b40bac6619a3 (patch)
treeb78aca53c716d15cefcaedbd77f9c46518ee261c /perl-install/standalone/drakTermServ
parent87b1c3f69fe70fefafc0757a620925c9d5462c87 (diff)
downloaddrakx-9c2224905d0d4b6a80ee34c7c847b40bac6619a3.tar
drakx-9c2224905d0d4b6a80ee34c7c847b40bac6619a3.tar.gz
drakx-9c2224905d0d4b6a80ee34c7c847b40bac6619a3.tar.bz2
drakx-9c2224905d0d4b6a80ee34c7c847b40bac6619a3.tar.xz
drakx-9c2224905d0d4b6a80ee34c7c847b40bac6619a3.zip
Install mkisofs if needed. Refuse to creates images without a NIC.
Diffstat (limited to 'perl-install/standalone/drakTermServ')
-rwxr-xr-xperl-install/standalone/drakTermServ28
1 files changed, 16 insertions, 12 deletions
diff --git a/perl-install/standalone/drakTermServ b/perl-install/standalone/drakTermServ
index bac06a5a6..506ecd9c8 100755
--- a/perl-install/standalone/drakTermServ
+++ b/perl-install/standalone/drakTermServ
@@ -1577,7 +1577,8 @@ sub write_and_check {
sub write_eb_image {
#- write a bootable etherboot CD image or floppy - pxe images too
- my ($nic, $rom_path, $type) = @_;
+ my ($nic, $rom_path, $type) = @_;
+ $in->ask_warn(N("Error"), N("No NIC selected!")) and return if $nic eq '';
if ($type eq 'floppy') {
my $in = interactive->vnew;
if (-e "/dev/fd0") {
@@ -1601,17 +1602,20 @@ sub write_eb_image {
$in->ask_warn(N("Error"), N("Error writing %s/%s", $tftpboot, $nic));
}
} else {
- my $tmp = "/root/tmp";
- mkdir_p("$tmp/eb");
- run_program::run("cat $rom_path/zdsk/$nic > $tmp/eb/eb.img");
- run_program::run("dd if=/dev/zero of=$tmp/eb/eb.img bs=512 seek=72 count=2808");
- run_program::run("mkisofs -b eb.img -o $tmp/$nic.iso $tmp/eb");
- rm_rf("$tmp/eb");
- if (-e "$tmp/$nic.iso") {
- $in->ask_warn(N("Information"), N("Etherboot ISO image is %s", "$tmp/$nic.iso"));
- } else {
- $in->ask_warn(N("Error"), N("Something went wrong! - Is mkisofs installed?"));
- }
+ my $installed = $in->do_pkgs->install('mkisofs') || -f "/usr/bin/mksofs";
+ if ($installed) {
+ my $tmp = "/root/tmp";
+ mkdir_p("$tmp/eb");
+ run_program::run("cat $rom_path/zdsk/$nic > $tmp/eb/eb.img");
+ run_program::run("dd if=/dev/zero of=$tmp/eb/eb.img bs=512 seek=72 count=2808");
+ run_program::run("mkisofs -b eb.img -o $tmp/$nic.iso $tmp/eb");
+ rm_rf("$tmp/eb");
+ if (-e "$tmp/$nic.iso") {
+ $in->ask_warn(N("Information"), N("Etherboot ISO image is %s", "$tmp/$nic.iso"));
+ return;
+ }
+ }
+ $in->ask_warn(N("Error"), N("Something went wrong! - Is mkisofs installed?"));
}
}