summaryrefslogtreecommitdiffstats
path: root/perl-install/fsedit.pm
Commit message (Collapse)AuthorAgeFilesLines
...
* use test_for_bad_drives even after install (esp. to detect removed usb-storagePascal Rigaux2003-02-211-1/+1
| | | | | devices still visible in /proc/scsi/scsi)
* warn non-ascii chars in mount point (cf bug #1588)Pascal Rigaux2003-02-201-0/+1
|
* use cdie instead of die for warningsPascal Rigaux2003-02-201-1/+1
|
* don't let diskdrake detect ext3/reiserfs/jfs/xfs on a type 0x7 partitionPascal Rigaux2003-02-201-1/+1
|
* - simplify check_mntpointPascal Rigaux2003-02-201-2/+3
| | | | | - fix checking mount point in Mount_point()
* to workaround perl bug removing UTF8 flag when passing scalars to die's, passGuillaume Cottenceau2003-02-191-11/+11
| | | | | | a scalar-ref. but we need to de-ref, so it might break many things :). let's make a prayer :).
* - cleanup & simplifyPascal Rigaux2003-02-191-9/+17
| | | | | - handle raid on raid detection
* /proc/partitions includes partition with type "empty" and a non-null sizePascal Rigaux2003-02-181-4/+8
| | | | | so add them for comparison
* better default partitioningPascal Rigaux2003-02-181-7/+7
|
* given default size of / increased.Francois Pons2003-02-171-2/+2
|
* increased /var container for suggestion (simple or with /usr).Francois Pons2003-02-171-2/+2
|
* handle 0x7 partition table id specially since it can be both hpfs or ntfs.Pascal Rigaux2003-02-111-2/+2
| | | | | | | so adding 0x107 being really ntfs. hopefully this change won't break too much things (but things were already broken, since it assigned a mount point with type ntfs to some hpfs partitions) (fixes bug #1455)
* add isFat_or_NTFS() and use it where possible instead of isFat() since WindowsPascal Rigaux2003-01-301-2/+2
| | | | | is now using ntfs, not only Windows NT
* handle mdX where X >= 10 (it should fix bug #1129)Pascal Rigaux2003-01-291-1/+1
|
* lvm on / works (dixit Brian J. Murrell)Pascal Rigaux2003-01-101-1/+1
|
* fsedit::part2hd() returns a scalar, no need to do "my ($hd) = ↵Pascal Rigaux2003-01-071-1/+1
| | | | fsedit::part2hd(...)"
* fix typo (operator priority related)Pascal Rigaux2003-01-071-1/+1
|
* use "if any" instead of "if grep", and various other occurences of "any", ↵Pascal Rigaux2003-01-071-10/+10
| | | | "every", "partition"
* add "new" to lvm.pm, and use itPascal Rigaux2002-12-181-2/+2
|
* really drop check()Pascal Rigaux2002-12-161-6/+0
|
* remove unused variables or rename them with an underscore (eg: $o becomes $_o)Pascal Rigaux2002-12-041-3/+3
|
* use if_() where possible (as reported by perl_checker)Pascal Rigaux2002-12-041-2/+2
|
* don't use "local *F"Pascal Rigaux2002-12-041-3/+3
|
* perl_checker adaptationsPascal Rigaux2002-11-271-3/+3
|
* add/remove spaces to make perl_checker happyPascal Rigaux2002-11-131-9/+9
|
* replace "_" with "N" and "__" with "N_"Pascal Rigaux2002-11-061-16/+16
| | | | | | | | | | | | | | | | | | | rationale: - currently, we use _("xxx") as a shorthand for gettext("xxx"). It also used to call xgettext with --keyword=_ - alas, function &_ is global and not by package (notice esp. that _ is not exported in common.pm) - this lead to big ugly pb with packages defining their own &_, overriding common.pm's &_ - a fix is to set @::textdomains to add a new domain (the default being "libDrakX") but relying on the global "_" is still dangerous!
* introduce a new flag: getting_rid_of_readonly_allowed. It is set when the ↵Pascal Rigaux2002-11-051-0/+1
| | | | | | | | partition table badly handled by diskdrake, but we are still allowed to wipe the partition table and start with something new.
* do not allow encrypted filesystem for /bootPascal Rigaux2002-09-151-1/+1
|
* (is_same_hd): add ugly support for davfs devices (http://...) comparison ↵Pascal Rigaux2002-08-281-0/+3
| | | | without the ending "/"
* - create lvms() which contains what was in hds()Pascal Rigaux2002-08-271-95/+113
| | | | | | | | | | | | - create get_hds() which handle errors when calling hds() - remove commented obsolete code - read_partitions is now read_proc_partitions_raw - readProcPartitions is now read_proc_partitions - read_proc_partitions use fake {start}s so that the empty space is computed ok by get_normal_parts_and_holes - verifyHds doesn't exist anymore - part of it is in hds() using compare_with_proc_partitions() and use_proc_partitions() - part of it is in install_any::getHds
* increase maxsize for / (partitioning with /usr) since it contains /tmp and ↵Pascal Rigaux2002-08-261-1/+1
| | | | /opt (as requested by Arnaud de Lorbeau)
* raise /usr maxsize to 4GBPascal Rigaux2002-08-211-3/+3
|
* backend davfs (WebDAV) supportPascal Rigaux2002-08-131-2/+2
|
* get rid of the duplicated /tmp in for suggestions_mntpoint() (thanks to Amaury)Pascal Rigaux2002-08-111-1/+1
|
* - rename LVMname to VG_namePascal Rigaux2002-08-111-5/+43
| | | | | | - part2hd: allow rootDevice to be a VG_name - add auto_allocate_vgs
* cleanupPascal Rigaux2002-08-111-14/+14
|
* - add /tmp in %suggestions for server partitioningPascal Rigaux2002-08-061-4/+5
| | | | | - tweak some ratio's in %suggestions
* s/__END__/1;Thierry Vignaud2002-08-051-1/+1
|
* kill "wonderful perl"Thierry Vignaud2002-08-051-4/+1
|
* get rid of some $prefix parameter passing (using $::prefix where needed instead)Pascal Rigaux2002-08-011-3/+3
|
* make new perl_checker happy (and that's not easy!)Pascal Rigaux2002-07-311-3/+3
|
* g Move 2: partition table: hierarchyThierry Vignaud2002-07-231-6/+6
|
* great new raidAutoStartRaidtab allowing to handle existing software raidsPascal Rigaux2002-07-071-1/+4
| | | | | | even when RAID_AUTORUN is not supported by kernel (which is the case for us since md.o is a not builtin the kernel)
* /root and /mnt must "remain within the root filesystem" (ie can't be used as ↵Pascal Rigaux2002-07-061-1/+2
| | | | mountpoints), dixit redhat
* (package_needed_for_partition_type): return the package needed for a ↵Pascal Rigaux2002-07-061-2/+12
| | | | | | | partition type (check_type): cleanup
* added /tmp in @suggestions_mntpoints (as suggested by Philippe Coulon)Pascal Rigaux2002-06-111-1/+1
|
* fix a few english stringsGuillaume Cottenceau2002-04-081-2/+2
|
* do not allow encrypted /varPascal Rigaux2002-03-061-1/+1
|
* have "with /usr" translatedPascal Rigaux2002-02-201-1/+1
|
* yet again better error reportingPascal Rigaux2002-01-221-0/+1
|