diff options
author | Thierry Vignaud <thierry.vignaud@gmail.com> | 2020-12-31 10:39:43 +0100 |
---|---|---|
committer | Thierry Vignaud <thierry.vignaud@gmail.com> | 2022-01-05 15:34:30 +0100 |
commit | 08b1d3996f89d923fc16dd7f60434d66955c162a (patch) | |
tree | fc6f7fc82f50be85b460a2d890be496c262eee9e /rescue | |
parent | 96f3c6f4744186ab84044b52ba760ad80da987a4 (diff) | |
download | drakx-08b1d3996f89d923fc16dd7f60434d66955c162a.tar drakx-08b1d3996f89d923fc16dd7f60434d66955c162a.tar.gz drakx-08b1d3996f89d923fc16dd7f60434d66955c162a.tar.bz2 drakx-08b1d3996f89d923fc16dd7f60434d66955c162a.tar.xz drakx-08b1d3996f89d923fc16dd7f60434d66955c162a.zip |
perl_checker cleanups
Diffstat (limited to 'rescue')
-rwxr-xr-x | rescue/bin/guessmounts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/rescue/bin/guessmounts b/rescue/bin/guessmounts index c5dc5996b..35da03cb0 100755 --- a/rescue/bin/guessmounts +++ b/rescue/bin/guessmounts @@ -68,7 +68,7 @@ if (@$luks_parts) { my $all_hds = fsedit::get_hds({}, $in); # Unlocking them in order to look at their fs (do they hold a Mageia installation): foreach my $part (@$luks_parts) { - diskdrake::interactive::dmcrypt_open($in, undef, $part, $all_hds) + diskdrake::interactive::dmcrypt_open($in, undef, $part, $all_hds); } my @dmcrypts = fs::dmcrypt::get_existing(@$luks_parts); push @$normal_parts, @dmcrypts; |