diff options
author | Antoine Ginies <aginies@mandriva.com> | 2003-07-16 13:46:21 +0000 |
---|---|---|
committer | Antoine Ginies <aginies@mandriva.com> | 2003-07-16 13:46:21 +0000 |
commit | 39e07227f94ddca339adc84c266d906ff499540b (patch) | |
tree | 6c5907540bbc3e0a6bdd8e88c00b851b186d5620 | |
parent | c7a339483f2af004cebf11f39295273a93572068 (diff) | |
download | drakx-backup-do-not-use-39e07227f94ddca339adc84c266d906ff499540b.tar drakx-backup-do-not-use-39e07227f94ddca339adc84c266d906ff499540b.tar.gz drakx-backup-do-not-use-39e07227f94ddca339adc84c266d906ff499540b.tar.bz2 drakx-backup-do-not-use-39e07227f94ddca339adc84c266d906ff499540b.tar.xz drakx-backup-do-not-use-39e07227f94ddca339adc84c266d906ff499540b.zip |
now swap is before / on client node
-rw-r--r-- | perl-install/fsedit.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/fsedit.pm b/perl-install/fsedit.pm index 157683771..2a822d4d6 100644 --- a/perl-install/fsedit.pm +++ b/perl-install/fsedit.pm @@ -19,8 +19,8 @@ use fs; %suggestions = ( __("simple") => [ + { mntpoint => "swap", size => 64 << 11, type => 0x82, ratio => 1, maxsize => 1024 << 11 }, { mntpoint => "/", size => 300 << 11, type =>0x483, ratio => 5 }, - { mntpoint => "swap", size => 64 << 11, type => 0x82, ratio => 1, maxsize => 250 << 11 }, ], __("cluster server") => [ { mntpoint => "/", size => 750 << 11, type =>0x483, ratio => 1, maxsize => 3500 << 11 }, { mntpoint => "swap", size => 64 << 11, type => 0x82, ratio => 1, maxsize => 250 << 11 }, |