diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2007-09-18 10:23:17 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2007-09-18 10:23:17 +0000 |
commit | ce9f2f3dc52173a581d8a6c2ab41e2911d4a47e6 (patch) | |
tree | 8ecd87a34987081dc1ccd9fd596257fe0ae1f51f /perl-install/partition_table/sun.pm | |
parent | d4dd27cd5b6a8c23baa75a0bb0eefaa6b0fa39f1 (diff) | |
download | drakx-ce9f2f3dc52173a581d8a6c2ab41e2911d4a47e6.tar drakx-ce9f2f3dc52173a581d8a6c2ab41e2911d4a47e6.tar.gz drakx-ce9f2f3dc52173a581d8a6c2ab41e2911d4a47e6.tar.bz2 drakx-ce9f2f3dc52173a581d8a6c2ab41e2911d4a47e6.tar.xz drakx-ce9f2f3dc52173a581d8a6c2ab41e2911d4a47e6.zip |
transform ->clear_raw into the more generic ->initialize
(useful to have a more standard partition_table::lvm)
Diffstat (limited to 'perl-install/partition_table/sun.pm')
-rw-r--r-- | perl-install/partition_table/sun.pm | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/perl-install/partition_table/sun.pm b/perl-install/partition_table/sun.pm index 49228d0f8..d5d29e27b 100644 --- a/perl-install/partition_table/sun.pm +++ b/perl-install/partition_table/sun.pm @@ -186,7 +186,7 @@ sub info { $info; } -sub clear_raw { +sub initialize { my ($hd) = @_; my $pt = { raw => [ ({}) x $nb_primary ], info => info($hd) }; @@ -198,7 +198,8 @@ sub clear_raw { size => $hd->{geom}{cylinders} * $hd->cylinder_size, }; - $pt; + $hd->{primary} = $pt; + bless $hd, 'partition::sun'; } 1; |