diff options
author | Thierry Vignaud <tv@mageia.org> | 2012-12-11 16:42:05 +0000 |
---|---|---|
committer | Thierry Vignaud <tv@mageia.org> | 2012-12-11 16:42:05 +0000 |
commit | d1802bfd39bdba8ffa3919f7377150c171e531da (patch) | |
tree | 0a936ee9838c310d99136657d9ae02137b3166ba | |
parent | c2d58c530cf452368a4713e26756acb1755ba021 (diff) | |
download | drakx-d1802bfd39bdba8ffa3919f7377150c171e531da.tar drakx-d1802bfd39bdba8ffa3919f7377150c171e531da.tar.gz drakx-d1802bfd39bdba8ffa3919f7377150c171e531da.tar.bz2 drakx-d1802bfd39bdba8ffa3919f7377150c171e531da.tar.xz drakx-d1802bfd39bdba8ffa3919f7377150c171e531da.zip |
perl_checker cleanup
-rw-r--r-- | perl-install/detect_devices.pm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/perl-install/detect_devices.pm b/perl-install/detect_devices.pm index a0c6a8c23..7cfdf31c6 100644 --- a/perl-install/detect_devices.pm +++ b/perl-install/detect_devices.pm @@ -1155,8 +1155,8 @@ sub isServer() { } sub isHyperv() { - dmidecode_category('System')->{'Manufacturer'} =~ /Microsoft Corporation/i - && dmidecode_category('System')->{'Product Name'} =~ /Virtual Machine/i + dmidecode_category('System')->{Manufacturer} =~ /Microsoft Corporation/i + && dmidecode_category('System')->{'Product Name'} =~ /Virtual Machine/i; } sub BIGMEM() { |