summaryrefslogtreecommitdiffstats
path: root/perl-install
Commit message (Collapse)AuthorAgeFilesLines
...
* install 'basesystem-minimal' instead of 'basesystem' prior to add extra mediaThierry Vignaud2013-05-012-3/+5
| | | | thus fixing "basesystem package not selected" (mga#9611)
* typo fixThierry Vignaud2013-05-011-2/+2
|
* make xdm installation automatic in auto_inst mode (mga#9875)Thierry Vignaud2013-05-013-4/+5
|
* typo fixesThierry Vignaud2013-05-012-111/+111
|
* updateThierry Vignaud2013-04-301-5/+5
|
* typo fixesThierry Vignaud2013-04-301-134/+133
|
* include mount options in auto_inst.plThierry Vignaud2013-04-302-1/+3
|
* 15.47Thierry Vignaud2013-04-303-1/+5
|
* include more partition fields in auto_inst.pl (mga#9784)Thierry Vignaud2013-04-302-1/+2
| | | | | | | include qw(hd level parts VG_name) also sort fields we might miss VGs though...
* properly credit Colin for latest fixThierry Vignaud2013-04-302-2/+2
|
* - skip comments in /etc/crypttab (mga#9905)Thierry Vignaud2013-04-303-0/+4
|
* 15.46Thierry Vignaud2013-04-292-1/+3
|
* typo fixThierry Vignaud2013-04-291-1/+1
|
* list 'shorewall-ipv6' along 'shorewall'Thierry Vignaud2013-04-282-1/+4
|
* recycle object earlierThierry Vignaud2013-04-281-2/+1
| | | | also we do now that we're not in installer
* logdrake: ensure syslog-daemon is installed (stopgap to full journal support)Colin Guthrie2013-04-282-2/+9
|
* 15.45Thierry Vignaud2013-04-273-1/+5
|
* (add_entry) try harder to get a label for other OSes (mga#9849,9681)Thierry Vignaud2013-04-273-1/+5
| | | | | rationale: on systems with lot of OSes and/or using grub2, we may well have already more than 10 alt entries
* only allow 'acl' option for extX & reiserfs (mga#9884)Thierry Vignaud2013-04-273-1/+7
|
* better logsThierry Vignaud2013-04-271-2/+2
|
* simplifyThierry Vignaud2013-04-271-1/+1
|
* install shorewall-ipv6 along shorewall (mga#9401)Thierry Vignaud2013-04-272-1/+2
|
* (installCallback) fix doble logging of %(pre|post)trans packagesThierry Vignaud2013-04-262-1/+3
| | | | eg: 'filesystem' which has a %pretrans scriptlet (mga#7758)
* drakex_help: Updated French translationYann Ciret2013-04-251-159/+188
|
* drakex_share: Updated French translationYann Ciret2013-04-241-8/+67
|
* 15.44Thierry Vignaud2013-04-233-1/+5
|
* fix a crash when reloading partition table (mga#9838)Thierry Vignaud2013-04-234-0/+4
|
* fix a crash when trying to create a encrypted LVM partition (mga#9837)Thierry Vignaud2013-04-233-0/+7
|
* Made a message better.Marek Laane2013-04-231-3/+3
|
* fix killing comments in XKBThierry Vignaud2013-04-231-1/+1
| | | | "regression" introduced in commit r7021 on Jan 5 2013 ("fix list")
* 15.43Anne Nicolas2013-04-221-1/+1
|
* Start final release integrationAnne Nicolas2013-04-222-0/+4
|
* perl_checker cleanupsThierry Vignaud2013-04-211-2/+2
|
* 15.42Thierry Vignaud2013-04-213-1/+5
|
* fix UI redraw issue after unlocking dmcrypt partition (mga#5661)Colin Guthrie2013-04-213-4/+16
|
* ensure LVMs on top of dmcrypt are activated after unlocking (mga#5661)Colin Guthrie2013-04-213-0/+7
|
* 15.41Thierry Vignaud2013-04-213-1/+5
|
* only enable "quit confirm" popup dialog when asked (mga#8476)Thierry Vignaud2013-04-212-0/+10
| | | | (when clicking "X")
* log latest changeThierry Vignaud2013-04-211-0/+1
|
* add support for new media helpThierry Vignaud2013-04-211-0/+2
|
* convert from ask_from() to ask_from_()Thierry Vignaud2013-04-211-2/+2
| | | | (needed for next commit)
* log latest commitsThierry Vignaud2013-04-202-0/+4
|
* merge translations from mccThierry Vignaud2013-04-2053-158/+158
|
* Fix minor typo in NEWSColin Guthrie2013-04-192-4/+4
|
* 15.40Thierry Vignaud2013-04-193-1/+5
|
* (_get_existing_one_with_state) split it out of open_part()Thierry Vignaud2013-04-191-1/+8
| | | | | (read_crypttab) try harder to get enough data ({dm_active}) (idea from Colin, mga#5661)
* fix losing crypt key when activating inactive partitions (mga#5661)Thierry Vignaud2013-04-193-1/+13
|
* fix losing crypt key when re-reeading partition tables (mga#5661)Thierry Vignaud2013-04-193-0/+9
|
* (save_crypttab_,read_crypttab_) split them out of (read|save)_crypttab_()Thierry Vignaud2013-04-191-6/+16
| | | | | | thus enabling to choose to/from which crypttab file read/write-ing needed for next changes (mga#5661)
* Do not use /dev/inside prefix.Colin Guthrie2013-04-184-8/+7
| | | | | | | | | | | | As /dev/ is bind mounted into the prefix, we should always refer to /dev/ directly. In particular this is needed inside wild_device.pm which is often used before the prefix is even ready (i.e. when configuring existing partitions). A specific problem here was detecting the major/minor numbers of partitions which failed because the device node was being searched for inside the prefix but we'd not even unlocked the encrypted / partition yet to mount it... catch 22. mga#5661