summaryrefslogtreecommitdiffstats
path: root/perl-install
Commit message (Collapse)AuthorAgeFilesLines
* remove dobleThierry Vignaud2005-06-031-1/+1
|
* (dd) reuse c::Thierry Vignaud2005-06-031-1/+1
|
* (dd) make sysopen() call readableThierry Vignaud2005-06-031-1/+1
|
* use "our" instead of "use vars"Pascal Rigaux2005-06-031-4/+3
|
* add O_CREATThierry Vignaud2005-06-031-1/+1
|
* help perl_checkerThierry Vignaud2005-06-031-1/+1
|
* fix pixel sucksThierry Vignaud2005-06-031-1/+1
|
* add O_WRONLY & O_RDWRThierry Vignaud2005-06-031-1/+1
|
* drop unused subsOlivier Blin2005-06-031-19/+0
|
* dropping pkg_install_if_requires_satisfied() (old & unused)Pascal Rigaux2005-06-031-17/+0
|
* - merge network settings in a $net hash (it modifies $o fields too):Olivier Blin2005-06-0320-825/+538
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | o $netc becomes $net->{network} and $net->{resolv} o $intf becomes $net->{ifcfg} - move zeroconf config stuff in write_zeroconf - read_tmdns_conf -> read_zeroconf - read_all_conf -> read_net_conf - configureNetwork2 -> configure_network - configure_network: write ifcfg files for ppp interfaces too - don't install wireless-tools in configure_network, this package is in basesystem - most functions don't need the file path as an argument in network::network - drop network::tools::remove_initscript - don't export too much from network::network - don't export from network::tools - remove adsl_unsupported_eci step in drakconnect - drop passwd2 field in network::adsl - drop $net->{isdn_internal} - network::netconnect : main -> safe_main - use network::netconnect::real_main during install - don't read network config in network::netconnect::real_main - install_steps::upNetwork : resolv.conf is already symlinked by network::network::configure_network when appropriate - try to fix install_any::generate_automatic_stage1_params to use a real interface configuration - put authentication stuff in $net->{auth} - drop network::ethernet::write_ether_conf - drop network::adsl::get_wizard - use 'static' instead of 'manual' as ADSL method - drop first_modem and its workarounds in network::modem - drop deprecated "multiple_internet_cnx" step in drakconnect - don't save /etc/sysconfig/drakconnect anymore - drop MDK::Common::Globals stuff - drop getIP in net_applet (Pixel) - drop $netc->{DHCP} - configure_network(): write resolv.conf even if a dhcp interface is configured
* drop setting $_ (unused)Pascal Rigaux2005-06-031-2/+0
|
* drop untranslate which is unused and bad practicePascal Rigaux2005-06-031-8/+1
|
* drop unused code (and one should use append_to_file instead of this outpend)Pascal Rigaux2005-06-031-5/+0
|
* drop old unused codePascal Rigaux2005-06-032-48/+0
|
* read existing authentication conf (only minimal support for now)Pascal Rigaux2005-06-032-9/+13
|
* simplifyPascal Rigaux2005-06-031-3/+4
|
* use find() (which was unused)Pascal Rigaux2005-06-031-3/+1
|
* add many non perl_checker compatible modulesPascal Rigaux2005-06-031-1/+7
|
* minimal changes to make me and perl_checker happyPascal Rigaux2005-06-031-3/+3
|
* make perl_checker happyPascal Rigaux2005-06-033-9/+9
|
* perl_checker fixes, make mode optionnal in load_imageOlivier Blin2005-06-031-3/+8
|
* 4th parameter is not used, i suspect it's not useful anymore since we pass ↵Pascal Rigaux2005-06-031-1/+1
| | | | the value in {sound_slot_index}
* - perl_checker compliancePascal Rigaux2005-06-031-8/+6
| | | | | - use "our" instead of "use vars"
* make perl_checker happyPascal Rigaux2005-06-031-39/+38
|
* Typo fixRafael Garcia-Suarez2005-06-031-5/+5
|
* simplifyPascal Rigaux2005-06-031-3/+1
|
* fix blino suxPascal Rigaux2005-06-031-1/+1
|
* drop unused variable, this is done in detect_devices::get_sysfs_device_id_map()Olivier Blin2005-06-031-1/+0
|
* make perl_checker happyPascal Rigaux2005-06-033-3/+3
|
* The mandrakelinux-release package doesn't exist any more, so you can'tRafael Garcia-Suarez2005-06-031-3/+5
| | | | | | deduce the version from it. Something more robust than this needs to be figured out.
* be more in drakx spirit, and more important perl_checker warning cleanPascal Rigaux2005-06-031-2/+1
|
* DISABLE_WINDOWS_KEY in /etc/sysconfig/keyboard since it is unusedPascal Rigaux2005-06-031-2/+0
| | | | | | (AFAIK as i, flepied and lmontel knows) (it was added by fpons, commit 1.108 on 2001/07/05)
* get rid of the few remaining $LD_LOADERPascal Rigaux2005-06-033-7/+8
|
* more tools when debugging installPascal Rigaux2005-06-031-1/+1
|
* rename load() into builtin_loadkeys()Pascal Rigaux2005-06-031-2/+2
|
* drop oooold broken codePascal Rigaux2005-06-031-7/+0
|
* drop oooold deprecated codePascal Rigaux2005-06-031-18/+0
|
* inline old mount command which has been removedPascal Rigaux2005-06-031-1/+4
|
* drop obsolete code (keymaps.cz2 and xmodmap.cz2 are dead since ↵Pascal Rigaux2005-06-031-20/+1
| | | | make_mdkinst_stage2 was dropped)
* keyboard::setup() is better named keyboard::setup_install()Pascal Rigaux2005-06-033-4/+4
|
* reformat keyboard2full_xkb()Pascal Rigaux2005-06-031-17/+14
|
* fix indentation (titi sux)Pascal Rigaux2005-06-031-1/+1
|
* create keyboard::configure_xorg() and use itPascal Rigaux2005-06-032-8/+12
| | | | | (and don't call it inside a eval, no error should occur)
* don't use $in->{locale} as being $o->{locale} during install, it's much ↵Pascal Rigaux2005-06-032-65/+71
| | | | better to pass $o->{locale}
* helper rulePascal Rigaux2005-06-021-0/+6
|
* Tidy up fuzzy messagesPjetur Hjaltason2005-06-021-32/+135
|
* random service doesn't exist anymoreOlivier Blin2005-06-021-1/+1
|
* Fixes and msg syncPjetur Hjaltason2005-06-021-290/+460
|
* read in existing modprobe.conf on upgrade (bugzilla #13309)Pascal Rigaux2005-06-022-1/+11
|