summaryrefslogtreecommitdiffstats
path: root/perl-install/fs.pm
diff options
context:
space:
mode:
authorChmouel Boudjnah <chmouel@mandriva.org>2001-05-14 15:59:23 +0000
committerChmouel Boudjnah <chmouel@mandriva.org>2001-05-14 15:59:23 +0000
commitf0a98b642d36f666312a1409eea7dc7282da2127 (patch)
tree09c3c3c645ceec0ab66d17b0b48d93df337c9b17 /perl-install/fs.pm
parent66d1e6bad40cf330f250d9a542f1a6bf47cedfeb (diff)
downloaddrakx-f0a98b642d36f666312a1409eea7dc7282da2127.tar
drakx-f0a98b642d36f666312a1409eea7dc7282da2127.tar.gz
drakx-f0a98b642d36f666312a1409eea7dc7282da2127.tar.bz2
drakx-f0a98b642d36f666312a1409eea7dc7282da2127.tar.xz
drakx-f0a98b642d36f666312a1409eea7dc7282da2127.zip
s|mkxfs|mkfs.xfs|;
Diffstat (limited to 'perl-install/fs.pm')
-rw-r--r--perl-install/fs.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/fs.pm b/perl-install/fs.pm
index a45607069..9e3009bde 100644
--- a/perl-install/fs.pm
+++ b/perl-install/fs.pm
@@ -98,7 +98,7 @@ sub format_reiserfs($@) {
sub format_xfs($@) {
my ($dev, @options) = @_;
- run_program::run("mkxfs", "-f", "-q", @options, devices::make($dev)) or die _("%s formatting of %s failed", "xfs", $dev);
+ run_program::run("mkfs.xfs", "-f", "-q", @options, devices::make($dev)) or die _("%s formatting of %s failed", "xfs", $dev);
}
sub format_dos($@) {
str">"_: Keep these entry short\nInstallation class"), 1, 1, '1', '' ], selectKeyboard => [ N_("_: Keep these entry short\nKeyboard"), 1, 1, '1' ], miscellaneous => [ N_("_: Keep these entry short\nSecurity"), 1, 1, '', '' ], doPartitionDisks => [ N_("_: Keep these entry short\nPartitioning"), 1, 0, '', "selectInstallClass" ], formatPartitions => [ N_("_: Keep these entry short\nFormatting"), 1, -1, '1', "doPartitionDisks" ], choosePackages => [ N_("_: Keep these entry short\nChoosing packages"), 1, -2, '1', "formatPartitions" ], installPackages => [ N_("_: Keep these entry short\nInstalling"), 1, -1, '', ["formatPartitions", "selectInstallClass"] ], setRootPassword => [ N_("_: Keep these entry short\nAuthentication"), 1, 1, '', "installPackages" ], addUser => [ N_("_: Keep these entry short\nUsers"), 1, 1, '', "installPackages" ], configureNetwork => [ N_("_: Keep these entry short\nNetworking"), 1, 1, '1', "formatPartitions" ], setupBootloader => [ N_("_: Keep these entry short\nBootloader"), 1, 0, '', "installPackages" ], configureX => [ N_("_: Keep these entry short\nConfigure X"), 1, 1, '1', ["formatPartitions", "setupBootloader"] ], summary => [ N_("_: Keep these entry short\nSummary"), 1, 0, '', "installPackages" ], configureServices => [ N_("_: Keep these entry short\nServices"), 1, 1, '1', "installPackages" ], installUpdates => [ N_("_: Keep these entry short\nUpdates"), 1, 1, '', ["installPackages", "configureNetwork", "summary"] ], exitInstall => [ N_("_: Keep these entry short\nExit"), 0, 0, '', '' ], ); for (my $i = 0; $i < @installSteps; $i += 2) { my %h; @h{@installStepsFields} = @{ $installSteps[$i + 1] }; $h{entered} = 0; $h{onError} = $installSteps[$i + 2 * $h{onError}]; $h{reachable} = !$h{needs}; $installSteps{$installSteps[$i]} = \%h; push @orderedInstallSteps, $installSteps[$i]; } $installSteps{first} = $installSteps[0]; } 1;