diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2004-03-11 11:37:08 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2004-03-11 11:37:08 +0000 |
commit | 19772d1d6649f9bcea2bed1619f5c8fe0b74f0ca (patch) | |
tree | 6459105629f0cbc0cc6529a0fc6795604f8e8d98 /perl-install | |
parent | c9e29640b3f81dbe39ec42625c98d0d0a9314289 (diff) | |
download | drakx-19772d1d6649f9bcea2bed1619f5c8fe0b74f0ca.tar drakx-19772d1d6649f9bcea2bed1619f5c8fe0b74f0ca.tar.gz drakx-19772d1d6649f9bcea2bed1619f5c8fe0b74f0ca.tar.bz2 drakx-19772d1d6649f9bcea2bed1619f5c8fe0b74f0ca.tar.xz drakx-19772d1d6649f9bcea2bed1619f5c8fe0b74f0ca.zip |
catch cdie's in auto_install
Diffstat (limited to 'perl-install')
-rw-r--r-- | perl-install/install_steps.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/install_steps.pm b/perl-install/install_steps.pm index 4e2970cce..6d2c83a7c 100644 --- a/perl-install/install_steps.pm +++ b/perl-install/install_steps.pm @@ -222,7 +222,7 @@ sub doPartitionDisks { my ($o) = @_; if ($o->{partitioning}{auto_allocate}) { - fsedit::auto_allocate($o->{all_hds}, $o->{partitions}); + catch_cdie { fsedit::auto_allocate($o->{all_hds}, $o->{partitions}) } sub { 1 }; } } |