summaryrefslogtreecommitdiffstats
path: root/perl-install/standalone/drakboot
blob: 33af4079ae0b05504c8819e1585ea25d959fc609 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
#!/usr/bin/perl

use lib qw(/usr/lib/libDrakX);

use common qw(:system :file :functional);
use interactive;
use any;
use lilo;
use detect_devices;
use fsedit;
use c;

local $_ = join '', @ARGV;

/-h/ and die "usage: drakboot\n";

$::isStandalone = 1;

my $in = vnew interactive('su');

my $bootloader = lilo::read('', '/etc/lilo.conf');

my $hds = catch_cdie { fsedit::hds([ detect_devices::hds() ], {}) } sub { 1 };
my $fstab = [ fsedit::get_fstab(@$hds) ];
fs::get_mntpoints_from_fstab($fstab);

ask:
any::setupBootloader($in, $bootloader, $hds, $fstab, $ENV{SECURE_LEVEL}) or $in->exit(0);

eval { lilo::install('', $bootloader) };
my $err = $@;
eval { lilo::install_grub('', $bootloader, $fstab, $hds) };

if ($err && $@) {
    $in->ask_warn('', 
		 [ _("Installation of LILO failed. The following error occured:"),
		   grep { !/^Warning:/ } cat_("/tmp/.error") ]);
    unlink "/tmp/.error";
    goto ask;
}

$in->exit(0);