summaryrefslogtreecommitdiffstats
path: root/perl-install/install_steps_auto_install.pm
Commit message (Collapse)AuthorAgeFilesLines
* add some ";", remove some ";", as told by perl_checkerPascal Rigaux2004-11-181-1/+1
|
* Unneccessary in cookerRafael Garcia-Suarez2004-10-061-4/+0
|
* Add a dummy ask_yesorno for autoinstallsRafael Garcia-Suarez2004-10-051-0/+4
|
* correctly call errorInStep()Pascal Rigaux2004-08-091-4/+5
|
* - %modules::conf is no more a global, so many functions need passing ↵Pascal Rigaux2004-07-211-2/+2
| | | | | | | | | | | | | | | $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
* display the errorPascal Rigaux2004-01-081-1/+2
|
* drop field {next} in {steps} since it is duplicated in orderedStepsPascal Rigaux2003-10-151-1/+1
| | | | | => it allows simpler modification of orderedSteps (as already done in upgrade) for mandrake move
* - move call to ->charsetChanged from install_steps_interactive to install_stepsPascal Rigaux2003-09-031-6/+5
| | | | | | so that we can use it in install_steps_auto_install_non_interactive - don't overload ->selectLanguage to call lang::load_console_font(), overload ->charsetChanged instead
* perl_checker adaptations + fixesPascal Rigaux2003-04-241-1/+4
|
* add a formatErrorPascal Rigaux2003-02-191-1/+1
|
* perl_checker compliance ("ref" now need parentheses in many case)Pascal Rigaux2003-02-121-2/+2
|
* language/country selection change:Guillaume Cottenceau2003-02-081-1/+1
| | | | | | | | | | | | | | | - first install step is selection of your language, in your language; it uses images for that - language->country is probed, the selection of the country is possible if there was a problem, in the Summary step - in the $o big structure, we now use $o->{locale} which contains three keys: lang, country and utf8 - lang.pm has been cleaned and rewritten a bit - keyboard probing now done only on language (because this step is at the beginning of the install) - timezone probing done on country, if use changes country before timezone in the Summary, re-probe timezone accordingly
* adapt to new category network/gigabit (which used to be in network/main)Pascal Rigaux2003-01-301-1/+1
|
* configureNetwork step must be non-auto otherwise onlyPascal Rigaux2003-01-161-1/+2
| | | | | install_steps::configureNetwork is called
* move install_steps_auto_install_non_interactive::configureNetwork() toPascal Rigaux2003-01-151-6/+5
| | | | | | install_steps_auto_install::configureNetwork() as it should be (thanks to Luc Bourdot)
* remove unused variables or rename them with an underscore (eg: $o becomes $_o)Pascal Rigaux2002-12-041-2/+2
|
* add/remove some spaces to make perl_checker happyPascal Rigaux2002-11-121-1/+1
|
* replace "_" with "N" and "__" with "N_"Pascal Rigaux2002-11-061-1/+1
| | | | | | | | | | | | | | | | | | | 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!
* nice message when rebootNeeded in auto_install (otherwise it reboots without ↵Pascal Rigaux2002-08-111-0/+7
| | | | prompting)
* adapt to new modules.pmPascal Rigaux2002-07-041-1/+1
|
* in replay mode, since $o->{interactiveSteps}Guillaume Cottenceau2002-03-071-2/+1
| | | | | | | exists, we can't simply ||= @graphical_steps, we need to push to ensure that the @graphical_steps is always honoured
* (enteringStep): do not translate in ja|ko|zhPascal Rigaux2001-09-151-1/+3
|
* force exitInstall to be non automaticPascal Rigaux2001-09-081-1/+1
|
* don't have formatPartitions interactive by defaultPascal Rigaux2001-08-221-1/+1
|
* a hell lot of cleanup/rewrite:Pascal Rigaux2001-08-171-1/+1
| | | | | | | | | | | * diskdrake_interactive created, diskdrake is now interactive aware * added some documentation about the structure used for partitioning * all_hds now contain the various hds, lvm, raid * cleanup the isLVM, isRAID and alike functions * field {type} in detect_devices is now {media_type} * detect_devices::floppies is now floppies_dev * removed old function prototypes
* auto_inst enhancementsPascal Rigaux2001-08-131-30/+36
|
* initial revision for drakautoinstGuillaume Cottenceau2001-08-131-20/+12
| | | | | | | | | | - put %installSteps in a separate package (steps.pm) (for drakxtools) - use additional fields {auto} and {noauto}, by step, to ease interactive auto install and oem stuff - in install2.pm, perform each step either from the interactive class or from install_steps, according to the {auto} flag - id, tell each step to not try to be automatic if {noauto} - in the install, have auto install bootdisk created in install_any so we can always write a bootdisk (from install_steps) for further use from drakautoinst in standalone - interactive version of install_steps_auto_install is now inheriting from the interactive class, so we can click on a previous automatic step and have it interactively during an interactive auto install
* switch to gtk install when interactiveSteps is definedPascal Rigaux2001-08-051-1/+1
|
* remove bad prototypePascal Rigaux2001-07-311-1/+1
|
* move to MDK::Common, bool->to_boolPascal Rigaux2001-07-241-1/+1
|
* fix exit install in graphical auto_install'sPascal Rigaux2001-07-191-3/+2
|
* based on Michael Brown <mbrown@fensystems.co.uk> patch:Pascal Rigaux2001-07-191-14/+28
| | | | | | - enables graphical steps in auto_installs for more than gtk - various cleanup
* (@graphical_steps): add beforeInstallPackages so that advertisings are therePascal Rigaux2001-03-061-1/+1
|
* (@graphical_steps): specify which step should be interactivePascal Rigaux2001-02-231-3/+13
|
* $graphical is now a module variable. Can be changed from everywherePascal Rigaux2001-02-221-3/+1
|
* (exitInstall): fix messagePascal Rigaux2000-11-201-1/+1
|
* no_commentPascal Rigaux2000-09-221-1/+1
|
* no_commentPascal Rigaux2000-09-141-1/+1
|
* no_commentPascal Rigaux2000-09-131-2/+1
|
* no_commentPascal Rigaux2000-09-121-1/+1
|
* *** empty log message ***Francois Pons2000-09-061-3/+1
|
* no_commentPascal Rigaux2000-09-051-1/+6
|
* no_commentPascal Rigaux2000-09-041-0/+11
|
* see changelog. Big changes.damien2000-09-011-1/+4
|
* no_commentPascal Rigaux2000-08-301-1/+1
|
* no_commentPascal Rigaux2000-08-211-1/+1
|
* no_commentPascal Rigaux2000-08-181-1/+1
|
* no_commentPascal Rigaux2000-08-061-2/+2
|
* no_commentPascal Rigaux2000-08-051-0/+1
|
* no_commentPascal Rigaux2000-07-131-0/+3
|