--- anaconda-7.3/textw/partmethod_text.py Wed Aug 1 11:33:13 2001 +++ anaconda-7.3-f1/textw/partmethod_text.py Fri Jul 26 15:07:48 2002 @@ -18,13 +18,14 @@ from translate import _, cat, N_ from constants_text import * from autopart import PARTMETHOD_TYPE_DESCR_TEXT - +#CJS wanted to change the default to be disk druid class PartitionMethod: def __call__(self, screen, partitions, instclass): rc = ButtonChoiceWindow(screen, _("Disk Partitioning Setup"), _(PARTMETHOD_TYPE_DESCR_TEXT), - [ (_("Autopartition"), "auto"), - (_("Disk Druid"), "ds"), +# [ (_("Autopartition"), "auto"), + [ (_("Disk Druid"), "ds"), + (_("Autopartition"), "auto"), (_("fdisk"), "fd"), TEXT_BACK_BUTTON ], width = 50, help = "parttool") @@ -33,11 +34,14 @@ elif rc == "fd": partitions.useAutopartitioning = 0 partitions.useFdisk = 1 - elif rc == "ds": - partitions.useAutopartitioning = 0 +# CJS more changes for what the default is +# elif rc == "ds": + elif rc == "auto": + partitions.useAutopartitioning = 1 partitions.useFdisk = 0 else: - partitions.useAutopartitioning = 1 +# partitions.useAutopartitioning = 1 + partitions.useAutopartitioning = 0 partitions.useFdisk = 0 return INSTALL_OK