summaryrefslogtreecommitdiffstats
path: root/perl-install/modules/any_conf.pm
Commit message (Collapse)AuthorAgeFilesLines
* drop 10 years old migrationThierry Vignaud2016-01-021-5/+0
|
* kill $Id:$ tagsThierry Vignaud2014-06-071-1/+1
| | | | they're obsolete since switching from CVS/SVN to git...
* drop disabling supermountThierry Vignaud2014-03-141-4/+1
| | | | | supermount is dead since 2007 (commit 29b91486ff7de14e6f4388ee03bf426a912f76d9)
* Synthesized commit during git-svn import combining previous Mandriva history ↵Mageia SVN-Git Migration2011-02-061-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | with Mageia. This commit consitsts of the following subversion commits: ------------------------------------------------------------------------ r431 | dmorgan | 2011-02-06 01:58:02 +0000 (Sun, 06 Feb 2011) | 1 line Add drakx structure on the SVN ------------------------------------------------------------------------ r432 | dmorgan | 2011-02-06 01:59:38 +0000 (Sun, 06 Feb 2011) | 1 line Import cleaned advertising ------------------------------------------------------------------------ r446 | dmorgan | 2011-02-06 22:37:08 +0000 (Sun, 06 Feb 2011) | 1 line Import Clean perl-install ------------------------------------------------------------------------ r448 | dmorgan | 2011-02-06 23:02:36 +0000 (Sun, 06 Feb 2011) | 1 line Add cleaned files ------------------------------------------------------------------------ r449 | dmorgan | 2011-02-06 23:03:52 +0000 (Sun, 06 Feb 2011) | 1 line Import cleaned kernel ------------------------------------------------------------------------ r450 | dmorgan | 2011-02-06 23:23:30 +0000 (Sun, 06 Feb 2011) | 1 line Import cleaned tools ------------------------------------------------------------------------ r451 | dmorgan | 2011-02-07 00:01:56 +0000 (Mon, 07 Feb 2011) | 1 line Import stage1 ------------------------------------------------------------------------ r473 | dmorgan | 2011-02-07 11:20:50 +0000 (Mon, 07 Feb 2011) | 1 line Import images ------------------------------------------------------------------------ r497 | ennael | 2011-02-09 21:02:06 +0000 (Wed, 09 Feb 2011) | 2 lines readd missing file ------------------------------------------------------------------------ r502 | pterjan | 2011-02-09 23:30:32 +0000 (Wed, 09 Feb 2011) | 1 line Import rescue ------------------------------------------------------------------------ r603 | ennael | 2011-02-24 13:32:54 +0000 (Thu, 24 Feb 2011) | 2 lines import cleaned rescue for Mageia ------------------------------------------------------------------------ r2061 | tv | 2011-10-20 20:32:19 +0100 (Thu, 20 Oct 2011) | 1 line import (cleaned) doc ------------------------------------------------------------------------
* re-sync after the big svn lossPascal Rigaux2007-04-251-7/+2
|
* (read_raw) explain (ie add comments)Thierry Vignaud2005-10-031-0/+2
|
* (remove_module) better written this wayThierry Vignaud2005-09-071-3/+5
|
* (remove_module) prevent wiping /etc/modprobe.preload if module isThierry Vignaud2005-09-071-0/+1
| | | | | unset (#16181)
* don't need prefixing with current packagePascal Rigaux2005-06-091-2/+2
|
* read in existing modprobe.conf on upgrade (bugzilla #13309)Pascal Rigaux2005-06-021-1/+9
|
* (remove_module) handle removal of cards (#7049)Thierry Vignaud2005-02-141-0/+4
|
* ensure that explanations go into /var/log/explanations is standalone modeThierry Vignaud2004-11-251-7/+7
| | | | | (log::explanations() just calls log::l() at install time)
* really parse modules file according to its type when reading it (always call ↵Olivier Blin2004-08-241-11/+17
| | | | $conf->read, split modules::any_conf::read in modules::any_conf::read_handled)
* internally keep module names according to what we configure (and our kernel, ↵Pascal Rigaux2004-08-101-15/+25
| | | | 2.4 or 2.6)
* perl_checker enhancementPascal Rigaux2004-07-221-1/+1
|
* add $IdPascal Rigaux2004-07-221-1/+1
|
* modules::modprobe_conf now works (at least a little :)Pascal Rigaux2004-07-221-23/+99
|
* - %modules::conf is no more a global, so many functions need passing ↵Pascal Rigaux2004-07-211-0/+117
$modules_conf - $modules_conf is a class choosing modules.conf or modprobe.conf (esp. useful after install) (but not working yet!) - modules::load() doesn't use $modules_conf, use modules::load_and_configure() - modules::load() doesn't allow options, use either modules::load_raw() or modules::load_and_configure() - some functions used to want an array ref for modules options and some a string, now every functions use a string - many functions (like modules::get_alias()) are now methods on $modules_conf - some functions in mouse.pm needed a $in where a $do_pkgs is enough - some perl_checker compliance - small fixes