diff options
author | Thierry Vignaud <tvignaud@mandriva.org> | 2004-08-27 03:25:43 +0000 |
---|---|---|
committer | Thierry Vignaud <tvignaud@mandriva.org> | 2004-08-27 03:25:43 +0000 |
commit | 0590a0066ed52ceb142762d39ab6600f0fd2cd5c (patch) | |
tree | 93406739cab842eaa948a1d3317e484082f9a053 /perl-install/standalone/drakboot | |
parent | ef5f59d300d75c711773983f31767a8d8451a4dd (diff) | |
download | drakx-0590a0066ed52ceb142762d39ab6600f0fd2cd5c.tar drakx-0590a0066ed52ceb142762d39ab6600f0fd2cd5c.tar.gz drakx-0590a0066ed52ceb142762d39ab6600f0fd2cd5c.tar.bz2 drakx-0590a0066ed52ceb142762d39ab6600f0fd2cd5c.tar.xz drakx-0590a0066ed52ceb142762d39ab6600f0fd2cd5c.zip |
(lilo_choice) fix canceling first step
Diffstat (limited to 'perl-install/standalone/drakboot')
-rwxr-xr-x | perl-install/standalone/drakboot | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/standalone/drakboot b/perl-install/standalone/drakboot index a7e9f2f65..b4bdb4de1 100755 --- a/perl-install/standalone/drakboot +++ b/perl-install/standalone/drakboot @@ -229,7 +229,7 @@ $in->exit(0); sub lilo_choice() { ask: my $before = fs::fstab_to_string($all_hds); - any::setupBootloader($in, $bootloader, $all_hds, $fstab, $ENV{SECURE_LEVEL}); + any::setupBootloader($in, $bootloader, $all_hds, $fstab, $ENV{SECURE_LEVEL}) or $in->exit; if ($before ne fs::fstab_to_string($all_hds)) { #- for /tmp using tmpfs when "clean /tmp" is chosen fs::write_fstab($all_hds); |