summaryrefslogtreecommitdiffstats
path: root/perl-install/fs
diff options
context:
space:
mode:
authorPascal Rigaux <pixel@mandriva.com>2004-08-02 11:45:43 +0000
committerPascal Rigaux <pixel@mandriva.com>2004-08-02 11:45:43 +0000
commit52ce91e9d3de48823520988e5f14680af67b112d (patch)
tree2d52d66629eabf43f6366c4b9eeae5a1f6603480 /perl-install/fs
parent72383353173737bacaab60fd49c04e7940035279 (diff)
downloaddrakx-backup-do-not-use-52ce91e9d3de48823520988e5f14680af67b112d.tar
drakx-backup-do-not-use-52ce91e9d3de48823520988e5f14680af67b112d.tar.gz
drakx-backup-do-not-use-52ce91e9d3de48823520988e5f14680af67b112d.tar.bz2
drakx-backup-do-not-use-52ce91e9d3de48823520988e5f14680af67b112d.tar.xz
drakx-backup-do-not-use-52ce91e9d3de48823520988e5f14680af67b112d.zip
make perl_checker happy
Diffstat (limited to 'perl-install/fs')
-rw-r--r--perl-install/fs/format.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/fs/format.pm b/perl-install/fs/format.pm
index fb948b6b5..ad4eebdd2 100644
--- a/perl-install/fs/format.pm
+++ b/perl-install/fs/format.pm
@@ -74,7 +74,7 @@ sub part_raw {
push @options, '-l', 'bootstrap';
}
- my ($pkg, $cmd, @first_options) = @{$cmds{$fs_type} || die N("I don't know how to format %s in type %s", $part->{device}, $part->{fs_type})};
+ my ($_pkg, $cmd, @first_options) = @{$cmds{$fs_type} || die N("I don't know how to format %s in type %s", $part->{device}, $part->{fs_type})};
run_program::raw({ timeout => 60 * 60 }, $cmd, @first_options, @options, devices::make($dev)) or die N("%s formatting of %s failed", $fs_type, $dev);