diff options
author | Francois Pons <fpons@mandriva.com> | 2003-07-10 14:25:03 +0000 |
---|---|---|
committer | Francois Pons <fpons@mandriva.com> | 2003-07-10 14:25:03 +0000 |
commit | b18871dc7138630c4d4269820c081696ae596c86 (patch) | |
tree | c91cf41383f3112d34214efa640b8eca8565ad59 | |
parent | 6bd900bbebba2a8254c05dabf887138acbb107eb (diff) | |
download | drakx-b18871dc7138630c4d4269820c081696ae596c86.tar drakx-b18871dc7138630c4d4269820c081696ae596c86.tar.gz drakx-b18871dc7138630c4d4269820c081696ae596c86.tar.bz2 drakx-b18871dc7138630c4d4269820c081696ae596c86.tar.xz drakx-b18871dc7138630c4d4269820c081696ae596c86.zip |
fixed mkswap original commands call.
-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 f9bacf492..c40f498c5 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 { |