diff options
author | Thierry Vignaud <tvignaud@mandriva.org> | 2002-09-06 21:36:02 +0000 |
---|---|---|
committer | Thierry Vignaud <tvignaud@mandriva.org> | 2002-09-06 21:36:02 +0000 |
commit | bf209b0d26153b1c8f4d51f26c20d60d9107e2f5 (patch) | |
tree | 8596c6590c1f93a73c5cd081ce4831fc70d2f0b4 /perl-install/harddrake/data.pm | |
parent | 100f950ee539ce7a88e4ea39d487dfb019a8298f (diff) | |
download | drakx-backup-do-not-use-bf209b0d26153b1c8f4d51f26c20d60d9107e2f5.tar drakx-backup-do-not-use-bf209b0d26153b1c8f4d51f26c20d60d9107e2f5.tar.gz drakx-backup-do-not-use-bf209b0d26153b1c8f4d51f26c20d60d9107e2f5.tar.bz2 drakx-backup-do-not-use-bf209b0d26153b1c8f4d51f26c20d60d9107e2f5.tar.xz drakx-backup-do-not-use-bf209b0d26153b1c8f4d51f26c20d60d9107e2f5.zip |
- harddrake::data : consolidate common code in custom_id()
- do some detection in dm stage
- fix bad test
- display better name
Diffstat (limited to 'perl-install/harddrake/data.pm')
-rw-r--r-- | perl-install/harddrake/data.pm | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/perl-install/harddrake/data.pm b/perl-install/harddrake/data.pm index d88925014..0da8974fa 100644 --- a/perl-install/harddrake/data.pm +++ b/perl-install/harddrake/data.pm @@ -82,4 +82,9 @@ our @tree = ); +sub custom_id { + my ($device, $str) = @_; + defined($device->{device}) ? $device->{device} : (defined($device->{description}) ? $device->{description} : $str); +} + 1; |