summaryrefslogtreecommitdiffstats
path: root/perl-install/install_steps.pm
Commit message (Collapse)AuthorAgeFilesLines
* perl_checker adaptationsPascal Rigaux2002-11-271-2/+3
|
* - fix duplication of sec level setting:Thierry Vignaud2002-11-191-1/+2
| | | | | | | | | | | | | merge any::get_secure_level() with secure::msec::get_secure_level() - move security level functions from secure::msec to secure::level - uses secure::level in install_steps - fix duplication of security level labels - draksec: use same strings in drakx, got nice translations - get_default_checks(): make it more readable
* add/remove spaces to make perl_checker happyPascal Rigaux2002-11-131-2/+2
|
* add/remove spaces to make perl_checker happyPascal Rigaux2002-11-131-1/+1
|
* update for new printerdrakeThierry Vignaud2002-11-121-7/+7
|
* - replace ... =~ 'foo' with ... =~ /foo/Pascal Rigaux2002-11-111-2/+2
| | | | | - remove unneeded parentheses for things like ... if (...)
* replace complex "unless"s with "if"sPascal Rigaux2002-11-061-1/+1
|
* please perl_checker:Pascal Rigaux2002-11-061-1/+1
| | | | | | | - local'ize $_ before doing while (<...>) - use "foreach" instead of "for" - remove unneeded parentheses on the right side of infix if/foreach/unless
* replace "_" with "N" and "__" with "N_"Pascal Rigaux2002-11-061-8/+8
| | | | | | | | | | | | | | | | | | | 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!
* make new perl_checker happy: replacing PKG::f by PKG::f()Pascal Rigaux2002-10-171-2/+2
|
* fixed oem images management not working at all!Francois Pons2002-10-011-16/+22
|
* - do not set type to ext2 when the type is ntfsPascal Rigaux2002-09-191-2/+2
| | | | | - set to ext3 instead of ext2
* do something with "Security Administrator (login or email)"Pascal Rigaux2002-09-121-0/+2
|
* added code after install of package to fix broken alternatives.Francois Pons2002-09-121-0/+11
|
* fix logPascal Rigaux2002-09-071-2/+2
|
* changed how pkgs::remove is called.Francois Pons2002-09-061-3/+1
|
* (addUser): fix calling with a user already existing (mainly for installs ↵Pascal Rigaux2002-09-041-2/+2
| | | | keeping the / non-formatted, special for pixel)
* add $o->{packages} to install_any::install_urpmi call.Francois Pons2002-09-021-0/+1
|
* fixed call to pkgs::remove.Francois Pons2002-08-301-1/+1
|
* - use $::prefix in any::get_secure_level()Pascal Rigaux2002-08-281-1/+1
| | | | | - fix any::get_secure_level() not using prefix when it should
* fix deleting previous report.bug when upgradingPascal Rigaux2002-08-261-3/+3
|
* revert (not needed by gnome-panel)Pascal Rigaux2002-08-261-3/+3
|
* move modules::write_pcmcia before install packagesPascal Rigaux2002-08-261-3/+3
|
* add firewire controller configurationPascal Rigaux2002-08-201-0/+1
|
* - fix reading previous keyboard config on upgrade (for displaying in summary)Pascal Rigaux2002-08-121-2/+5
| | | | | | - ensure keyboard and mouse configuration are not overwritten if not explictly modified on upgrade - propagate pci=xxx at install to bootloader (since "pci=bios,biosirq" is needed on some box, see http://islay.dyndns.org/taz/index.html for more)
* allow removing packages on upgrade.Francois Pons2002-08-121-23/+4
|
* make sure size of packages is computed.Francois Pons2002-08-091-5/+2
|
* remove previous report.bug.gz (otherwise one get a report.bug *and* the ↵Pascal Rigaux2002-08-091-0/+1
| | | | | | | previous report.bug.gz) (report.bug's are not rotated, ddebug.log's and install.log's are)
* don't add users in group usb (unneeded (?), anyway doesn't do anything since ↵Pascal Rigaux2002-08-081-3/+1
| | | | group usb doesn't exist currently)
* added automatic update of lilo image and KDE & GNOME background.Francois Pons2002-08-071-0/+30
|
* s/__END__/1;Thierry Vignaud2002-08-051-1/+1
|
* kill "wonderful perl"Thierry Vignaud2002-08-051-4/+1
|
* - the old $o->{keyboard} is now $o->{keyboard}{KEYBOARD}Pascal Rigaux2002-08-011-3/+7
| | | | | | | | - KBCHARSET is $o->{keyboard}{KBCHARSET} - isNotDelete is $o->{keyboard}{BACKSPACE} (as written in sysconfig/keyboard) - add GRP_TOGGLE which gives XkbOptions "grp:GRP_TOGGLE" - add dialog box to choose GRP_TOGGLE
* get rid of some $prefix parameter passingPascal Rigaux2002-08-011-2/+2
|
* get rid of some $prefix parameter passing (using $::prefix where needed instead)Pascal Rigaux2002-08-011-2/+2
|
* bootloader::suggest uses a hash for its optionsPascal Rigaux2002-08-011-1/+2
|
* make new perl_checker happy (and that's not easy!)Pascal Rigaux2002-07-311-5/+4
|
* use usb keyboard bCountryCode to choose the right keyboardPascal Rigaux2002-07-301-1/+1
|
* (configureX, configureXBefore, configureXAfter): greatly simplified using ↵Pascal Rigaux2002-07-281-26/+7
| | | | new Xconfig stuff
* use run_program::rooted_get_stdout instead of `chroot $prefix ...`Pascal Rigaux2002-07-261-1/+1
|
* g Move 2: partition table: hierarchyThierry Vignaud2002-07-231-1/+1
|
* - Big Move 1: interactive::* hierarchyThierry Vignaud2002-07-231-1/+1
|
* call config_dvd with $have_devfsdPascal Rigaux2002-07-201-3/+4
|
* don't pass the prefix parameter, not needed/wanted anymorePascal Rigaux2002-07-191-1/+1
|
* Big Xconfigurator.pm cleanup/reworkPascal Rigaux2002-07-171-6/+6
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - use $X instead of $o (to avoid name conflict with DrakX's $o) - {flag}{noclockprobe} unused, dropping it - rename {memory} into "VideoRam" - rename {ramdac} into {Ramdac} - rename {chipset} into {Chipset} - rename {clockchip} into {Clockchip} - rename {keyboard}{xkb_model} into {keyboard}{XkbModel} - rename {keyboard}{xkb_keymap} into {keyboard}{XkbLayout} - drop {mouse}{chordmiddle} (obsolete) - drop {mouse}{cleardtrrts} (obsolete, was not written to XF4 config) - &testConfig is unused, removing it - as a concequence, {clocklines} is never set, dropping it - when UNSUPPORTED remove {driver}, instead of setting {flag}{unsupported} - Cards+ now only provide {Chipset} for cards needing it => {flag}{needChipset} not needed anymore - moved setting needVideoRam in Cards+ (via NEEDVIDEORAM) (hoping it will work: since the regexp was broken, it was never done. (it was applied on the module field of pcitable, instead of the description)) - dropped modelines_text_Trident_TG_96xx case (it has never been used) - rename %xkb_options into %XkbOptions - rename {DRI_glx} into {DRI_GLX}, the value now comes from Cards+ instead of regexp'ing {identifier} - rename {Utah_glx} into {UTAH_GLX}, the value now comes from Cards+ instead of regexp'ing {identifier} - rename {Utah_glx_EXPERIMENTAL} into {UTAH_GLX_EXPERIMENTAL}, the value now comes from Cards+ instead of regexp'ing {identifier} - very_bad_card and bad_card are now the same, the value now comes from Cards+ (BAD_FB_RESTORE & BAD_FB_RESTORE_XF3) - drop unused @accelservers - remove $modelines_text_apple, use $modelines_text_ext instead - don't use a <Section "Modes"> together with <UseModes "Mac Modes">, put directly modelines in Section "Monitor" (why should ppc behave differently than others!?) - replace (conflicting) ModeLines "1280x1024 @ 74 Hz" and "1280x1024 @ 76 Hz" with "1280x1024 @ 75 Hz" (from ddcxinfos) - drop ModeLine "640x480 @ 72 Hz" (it conflicts, and anyway, it has no real use nowadays :) - drop comments about HorizSync, VertRefresh and ModeLine's from XF86Config - drop many unneeded stuff from XF86Config: AutoRepeat, Xqueue, Xleds, NoTrapSignals, XkbTypes, XkbKeycodes, XkbCompat, XkbRules, LeftAlt/RightAlt/ScrollLock/RightCtl - drop section comments from XF86Config - drop XF86_Mono configuration (it doesn't work anyway, seems like it needs a special ModeLine?) - drop 320x200 with XF86_SVGA (who can use this!?) - do not write Screen section "accel" if the server configured is not an accel one - drop the "Generic VGA" Device section for XF4 (this device is unused) - drop {monitor}{vendor}, {monitor}{model}, {card}{vendor}, {card}{model}, {card}{board} (only description strings, not useful for running the server) - use x_res instead of wres for things like 1024 in 1024x768
* removed useless package selection cleaning.Francois Pons2002-07-161-2/+0
|
* code re-organisation (a little).Francois Pons2002-07-151-9/+14
|
* draknet is drakconnect nowThierry Vignaud2002-07-121-1/+1
|
* use perl-URPM instead of rpmtools.Francois Pons2002-07-101-8/+7
|
* enhance cohenrency: step 1Thierry Vignaud2002-07-101-1/+1
| | | | | | | | | | | | | | - ide and scsi devices use channel rather than bus to store their physical connection, which is more logic (at least for eide) - all devices have their connection bus in bus field, not in bus for {pci,usb,...} and interface_type for {scsi,eide,other_block_devices} - detect_devices:getIDE() : add eide_hds hash in order to be able to split info field between model and vendor - harddrake::ui : code reduction allowed by the above changes