summaryrefslogtreecommitdiffstats
path: root/perl-install/diskdrake/interactive.pm
diff options
context:
space:
mode:
authorPascal Rigaux <pixel@mandriva.com>2002-12-09 20:14:31 +0000
committerPascal Rigaux <pixel@mandriva.com>2002-12-09 20:14:31 +0000
commite696409f531a91c512a4c2768accccb58ec9f278 (patch)
treed183875dd9be74b7d0f1b4363d0520ebdb8ef8d4 /perl-install/diskdrake/interactive.pm
parent4a96a57480abda1195b8b67ad1a8175e7bc8ba13 (diff)
downloaddrakx-backup-do-not-use-e696409f531a91c512a4c2768accccb58ec9f278.tar
drakx-backup-do-not-use-e696409f531a91c512a4c2768accccb58ec9f278.tar.gz
drakx-backup-do-not-use-e696409f531a91c512a4c2768accccb58ec9f278.tar.bz2
drakx-backup-do-not-use-e696409f531a91c512a4c2768accccb58ec9f278.tar.xz
drakx-backup-do-not-use-e696409f531a91c512a4c2768accccb58ec9f278.zip
- handle more locally "Reload partition table" (esp. without using setstep)
=> no exception is called through gtk
Diffstat (limited to 'perl-install/diskdrake/interactive.pm')
-rw-r--r--perl-install/diskdrake/interactive.pm20
1 files changed, 12 insertions, 8 deletions
diff --git a/perl-install/diskdrake/interactive.pm b/perl-install/diskdrake/interactive.pm
index 599991db6..f588061f2 100644
--- a/perl-install/diskdrake/interactive.pm
+++ b/perl-install/diskdrake/interactive.pm
@@ -164,7 +164,7 @@ struct all_hds {
sub main {
- my ($in, $all_hds) = @_;
+ my ($in, $all_hds, $_nowizard, $do_force_reload) = @_;
if ($in->isa('interactive::gtk')) {
require diskdrake::hd_gtk;
@@ -204,7 +204,13 @@ sub main {
messages => format_part_info($current_hd, $current_part),
},
[ { val => \$a, list => $actions, format => \&translate, type => 'list', sort => 0, gtk => { use_boxradio => 0 } } ]) or last;
- $actions{$a}();
+ my $v = eval { $actions{$a}() };
+ if (my $err = $@) {
+ $in->ask_warn(N("Error"), formatError($err));
+ }
+ if ($v eq 'force_reload') {
+ $all_hds = $do_force_reload->();
+ }
$current_hd = $current_part = '' if !is_part_existing($current_part, $all_hds);
} else {
$choose_part->();
@@ -317,21 +323,19 @@ sub Auto_allocate {
sub More {
my ($in, $hd) = @_;
+ my $r;
$in->ask_from('', '',
[
{ val => N("Save partition table"), clicked_may_quit => sub { SaveInFile($in, $hd); 1 } },
{ val => N("Restore partition table"), clicked_may_quit => sub { ReadFromFile($in, $hd); 1 } },
{ val => N("Rescue partition table"), clicked_may_quit => sub { Rescuept($in, $hd); 1 } },
- if_($::isInstall,
- { val => N("Reload partition table"), clicked => sub {
- $::o->{all_hds} = fsedit::empty_all_hds();
- die "setstep doPartitionDisks\n" if $::setstep;
- } }),
+ if_($::isInstall || 1,
+ { val => N("Reload partition table"), clicked_may_quit => sub { $r = 'force_reload'; 1 } }),
if_($::isInstall,
{ text => N("Removable media automounting"), val => \$::o->{useSupermount}, type => 'bool' },
),
],
- );
+ ) && $r;
}
sub ReadFromFile {