summaryrefslogtreecommitdiffstats
path: root/perl-install/diskdrake/interactive.pm
Commit message (Collapse)AuthorAgeFilesLines
* try to cleanup fs.pmPascal Rigaux2005-06-281-5/+5
| | | | | | | | | | | | | | | | | | | | | | | | (to have simpler dependencies between modules, esp. have some modules only required by diskdrake): - move some functions from fs to fs::mount (most keep their name, except mount_part and mount_usbfs) - move formatMount_part and formatMount_all from fs to fs::format - move some functions from fs to fs::wild_device (part2wild_device_name -> fs::wild_device::from_part) (subpart_from_wild_device_name -> fs::wild_device::to_subpart) (analyze_wild_device_name -> fs::wild_device::analyse) - formatMount_part(), formatMount_all(), fs::mount::part() don't take a prefix anymore the current situation was quite muddy we now rely on fs::get::mntpoint_prefixed() which will maybe depend on a field in $part for now, we mount every part in chroot, it seems to be what's wanted - fs::format::part() now expect $all_hds instead of $raids - fs::type::carryRootLoopback is now fs::get::carry_root_loopback() - in fs::loopback, most functions don't want a prefix anymore
* use diskdrake::resize_ext2Pascal Rigaux2005-06-141-13/+7
|
* - move functions using /proc/partitions out of fsedit to fs::proc_partitionsPascal Rigaux2005-06-101-1/+25
| | | | | | - remove unneeded "use xxx" - add some "use xxx" (nb: not completly needed because some other modules may do it)
* add some "use xxx;" (the idea is to see what the package needs, but i may ↵Pascal Rigaux2005-06-101-1/+3
| | | | rollback after understanding better dependencies)
* move loopback.pm to fs/loopback.pmPascal Rigaux2005-06-101-3/+3
| | | | | (since it's tightly tight to many fs* things)
* remove unused isPrimaryPascal Rigaux2005-06-031-1/+0
|
* drop old unused codePascal Rigaux2005-06-031-4/+0
|
* fix displaying "Number of logical extents: %d"Pascal Rigaux2005-05-021-1/+1
|
* - allow resizing ext3 LV if not mountedPascal Rigaux2005-05-021-1/+2
| | | | | - allow resizing reiserfs LV even if not mounted
* fix commentPascal Rigaux2005-04-191-1/+1
|
* useSupermount is no more a boolean, don't let the "More" dialog box set it ↵Pascal Rigaux2005-03-311-2/+10
| | | | to 1 when it is magicdev
* calling inactivate_and_dirty() on a new structure is bad, we loose the ↵Pascal Rigaux2005-03-241-3/+3
| | | | | | | {isFormatted} flag (no big deal though, it happened because raid::new() was creating a new raid with an already active md name)
* use raid::free_mds() and don't sort (we provide a better numerically sorted ↵Pascal Rigaux2005-03-241-2/+1
| | | | list)
* ensure {lv_name} is set when calling check_mntpoint() from Create() (via ↵Pascal Rigaux2005-03-221-0/+3
| | | | check()) (bugzilla #14253)
* remove the lvm if lvm::vg_destroy() succeeds (bugzilla #14249)Pascal Rigaux2005-03-181-1/+2
|
* Diskdrake mods for XBox (thks Pixel)Stew Benedict2005-03-101-1/+4
|
* allow live resizing of reiserfs on lvm (as tested by Gaetan Lehmann). not testedPascal Rigaux2005-03-071-2/+5
|
* ensure ntfsresize is availablePascal Rigaux2005-03-061-0/+1
|
* remember encryption algorithmOlivier Blin2005-03-011-3/+3
|
* allow to choose encryption algorithm (#13472)Olivier Blin2005-03-011-3/+7
|
* use ->ask_filename instead of ->ask_file (esp. useful in "save" mode)Pascal Rigaux2005-02-181-2/+2
|
* factorize code in ask_window_manager_to_logout_then_do()Pascal Rigaux2005-02-181-15/+1
|
* don't reboot if the window manager did not exitPascal Rigaux2005-02-181-1/+1
|
* media_browser returns a filehandle when non savePascal Rigaux2005-02-181-3/+3
|
* in case someone use diskdrake only to create partitions, shut up the ↵Pascal Rigaux2005-02-171-1/+9
| | | | predefined mount point automatic choice
* replace load/save from floppy with using media_browser()Pascal Rigaux2005-02-151-6/+16
|
* Untranslated stringRafael Garcia-Suarez2005-02-041-1/+1
|
* $hd is now unused, no need to pass itPascal Rigaux2005-02-011-5/+5
|
* this warning is stupid during installPascal Rigaux2005-01-141-1/+1
|
* - fs::format::part_raw() now takes $wait_message to allow displaying the ↵Pascal Rigaux2005-01-061-6/+2
| | | | | | | | progress of format - create fs::format::wait_message() which creates a $wait_message valid to give to fs::format::part - fs::format::mke2fs() format while parsing the output to display the progress
* better english (writing style rather than spoken one)Thierry Vignaud2004-12-131-10/+10
|
* moving partitions never really worked and is disabled since yearsPascal Rigaux2004-11-251-12/+0
|
* - create analyze_wild_device_name() out of subpart_from_wild_device_name()Pascal Rigaux2004-11-251-0/+3
| | | | | | | | | | - rename part2device() into part2wild_device_name(), change its prototype and use analyze_wild_device_name() - new field {faked_device} - for LABEL=..., {device} is not empty anymore and {faked_device} is set, merge_fstabs() will take care of having the real {device} and {faked_device} unset - for devfs_device, {device} is set to the devfs device, merge_fstabs() will take care of having the non devfs device in {device}
* since we don't use ramdisk but clp, some code is deadPascal Rigaux2004-11-181-1/+1
| | | | | (remove usingRamdisk(), check_prog(), remove_unused()...)
* add some ";", remove some ";", as told by perl_checkerPascal Rigaux2004-11-181-3/+3
|
* really remove the VG from internal list of {lvms}, not on a copyPascal Rigaux2004-11-171-2/+1
|
* create isEmpty() and use it instead of simply testing {pt_type}, since ↵Pascal Rigaux2004-11-161-9/+7
| | | | {pt_type} can be undef whereas {fs_type} is set
* warn about created partition with a given mount point but not formattedPascal Rigaux2004-10-271-0/+5
|
* since we need mdadm, ensure we have it (bugzilla #12146)Pascal Rigaux2004-10-271-0/+1
|
* document UUID md fieldPascal Rigaux2004-10-141-0/+1
|
* - add field {part_number} for partitionsPascal Rigaux2004-09-201-0/+1
| | | | | | | | | | | (handle it in subpart_from_wild_device_name(), partition_table::read()) - create migrate_device_names() to handle the change of device names when changing kernel&modules (eg: hde->hda or hda->sda) - change prototype of install_any::use_root_part() (prefix is dropped, optional $in is added) - create fs::type::can_be_this_fs_type() and use it - create devices::part_number() and devices::part_prefix() and use them
* - ensure {is_removable} field is there for created partitions, not only ↵Pascal Rigaux2004-09-141-1/+2
| | | | | | | existing partitions - it breaks Create(), fixing
* fix displaying "mdmd0" instead of "md0"Pascal Rigaux2004-09-061-1/+1
|
* no {fs_type} doesn't mean the type invalidPascal Rigaux2004-08-101-1/+1
|
* no {pt_type} doesn't mean EmptyPascal Rigaux2004-08-101-1/+1
|
* help perl_checker know the $all_hds *is* usedPascal Rigaux2004-08-091-0/+1
|
* - switch to mdadm (instead of raidtools)Pascal Rigaux2004-08-081-22/+24
| | | | | | | | | - create mdadm.conf instead of raidtab - internal {raids} is no more indexed by X for mdX, and so don't have holes anymore - internal {chunk-size} is now a number in KiB - internal {raid} is the raid device name, not the number - various cleanup for raid detection
* adapt to bootloader functions now using all_hds instead of hdsPascal Rigaux2004-08-051-1/+1
|
* move mount options related stuff from fs.pm to newly created fs/mount_options.pmPascal Rigaux2004-08-031-6/+6
| | | | | | | | | | | - fs::set_all_default_options() -> fs::mount_options::set_all_default() - fs::mount_options_pack() -> fs::mount_options::pack() - fs::mount_options_unpack() -> fs::mount_options::unpack() - fs::rationalize_options() -> fs::mount_options::rationalize() - fs::set_default_options() -> fs::mount_options::set_default() - fs::mount_options() -> fs::mount_options::list() - fs::mount_options_help() -> fs::mount_options::help()
* many functions in fsedit don't modify anything, they are simply accessors.Pascal Rigaux2004-08-031-7/+6
| | | | | | | | | | | | | | | | | | | | | | | | create fs::get and move them into it - device2part(), up_mount_point() moved from fs to fs::get - part2hd(), file2part(), has_mntpoint(), mntpoint2part(), empty_all_hds() moved from fsedit to fs::get - fsedit::get_root() -> fs::get::root() - fsedit::get_root_() -> fs::get::root_() - fsedit::get_really_all_fstab() -> fs::get::really_all_fstab() - fsedit::get_all_fstab_and_holes() -> fs::get::fstab_and_holes() - fsedit::get_all_fstab() -> fs::get::fstab() - fsedit::get_all_holes() -> fs::get::holes() - fsedit::all_free_space -> fs::get::free_space() - fsedit::get_really_all_fstab() -> fs::get::really_all_fstab() - fsedit::get_fstab_and_holes() -> fs::get::hds_fstab_and_holes() - fsedit::get_holes() -> fs::get::hds_holes() - fsedit::get_fstab() -> fs::get::hds_fstab() - fsedit::free_space() -> fs::get::hds_free_space() - fsedit::get_visible_fstab() unused, removed