diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2003-07-16 11:35:54 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2003-07-16 11:35:54 +0000 |
commit | 059feb224f78b3b94077746f441718deb0c192ab (patch) | |
tree | 0013d2deabf5b28857425568d535dd8068fbbd7f /perl-install/swap.pm | |
parent | 0348ae59b9f8606a0443d38a14c36090da7beb46 (diff) | |
download | drakx-059feb224f78b3b94077746f441718deb0c192ab.tar drakx-059feb224f78b3b94077746f441718deb0c192ab.tar.gz drakx-059feb224f78b3b94077746f441718deb0c192ab.tar.bz2 drakx-059feb224f78b3b94077746f441718deb0c192ab.tar.xz drakx-059feb224f78b3b94077746f441718deb0c192ab.zip |
remove mkswap from commands.pm, so no need anymore to have mkswap_ (the drawback is that the mkswap command won't create the device anymore)
Diffstat (limited to 'perl-install/swap.pm')
-rw-r--r-- | perl-install/swap.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/swap.pm b/perl-install/swap.pm index c40f498c5..f9bacf492 100644 --- a/perl-install/swap.pm +++ b/perl-install/swap.pm @@ -9,7 +9,7 @@ use devices; sub make { my ($dev, $checkBlocks) = @_; - run_program::raw({ timeout => 60 * 60 }, "mkswap_", if_($checkBlocks, '-c'), devices::make($dev)) or die \N("%s formatting of %s failed", 'swap', $dev); + run_program::raw({ timeout => 60 * 60 }, "mkswap", if_($checkBlocks, '-c'), devices::make($dev)) or die \N("%s formatting of %s failed", 'swap', $dev); } sub enable { |