summaryrefslogtreecommitdiffstats
path: root/perl-install/network/tools.pm
Commit message (Collapse)AuthorAgeFilesLines
* do not ask for root password if interface allows USERCTLOlivier Blin2005-02-251-2/+11
|
* minimal WPA supportOlivier Blin2005-02-241-1/+10
|
* perl_checker fixesOlivier Blin2005-02-171-2/+2
|
* revert some previous commitOlivier Blin2005-02-171-1/+0
|
* net_cnx scripts shouldn't be used anywhere nowOlivier Blin2005-02-171-4/+0
|
* remove set_cnx_scriptOlivier Blin2005-02-171-7/+1
|
* remove write_cnx_scriptOlivier Blin2005-02-171-10/+2
|
* basic ndiswrapper supportOlivier Blin2005-02-051-0/+8
|
* remove unused variablesPascal Rigaux2005-01-061-2/+1
|
* better english (writing style rather than spoken one)Thierry Vignaud2004-12-131-1/+1
|
* introduce network::tools::get_interface_statusOlivier Blin2004-11-091-4/+9
|
* cleanup thanks to perl_checkerPascal Rigaux2004-10-151-4/+8
|
* simplifyPascal Rigaux2004-10-141-1/+1
|
* cleanup thanks to perl_checkerPascal Rigaux2004-10-141-6/+9
|
* I sux, fix priorityOlivier Blin2004-09-271-4/+4
|
* (bg_command_as_root) use kdesu in kdeOlivier Blin2004-09-271-1/+6
|
* (get_default_gateway_interface) try to detect default connection inOlivier Blin2004-09-271-21/+5
| | | | | this order : adsl > isdn > modem > ethernet
* - don't use fs::get_info_from_fstab() in install_any::use_root_part() to be ↵Pascal Rigaux2004-09-201-1/+1
| | | | | | | | | able to handle renamed devices - fs::get_info_from_fstab() doesn't take a prefix anymore - small perl_checker fix in install_any.pm
* (get_default_ippp_interface) use interfaces with true DIAL_ON_IFUPOlivier Blin2004-09-131-1/+1
|
* (get_interface_type) ethernet devices can be used as adsl devicesOlivier Blin2004-09-071-1/+1
|
* remove horrible and unneeded workaroundOlivier Blin2004-09-031-1/+1
|
* shut up perl_checker!Olivier Blin2004-09-031-1/+1
|
* remove test_internet_connection(), use network::test insteadOlivier Blin2004-09-031-17/+0
|
* (get_interface_type) enhance detection for adsl devicesOlivier Blin2004-09-031-1/+2
|
* revert titi fix, do not return random interface if internet connectionOlivier Blin2004-09-011-3/+1
| | | | | is not configured
* do not use find over grep, just findOlivier Blin2004-09-011-10/+3
|
* (get_internet_connection) if no default route exits, take first route in orderThierry Vignaud2004-09-011-1/+3
| | | | | to not have strange messages in net_appletb
* move start_interface and stop_interface from net_monitor to network::tools, ↵Olivier Blin2004-08-301-1/+16
| | | | use it in net_monitor and net_applet
* write metric in ifcfg files according to connection typeOlivier Blin2004-08-271-1/+11
|
* add missing spacesOlivier Blin2004-08-251-2/+2
|
* add get_interface_type to guess interface typeOlivier Blin2004-08-251-0/+7
|
* add new functions to make internet connection tests easierOlivier Blin2004-08-171-0/+76
|
* drop network::tools::reread_net_confOlivier Blin2004-08-171-6/+0
|
* kill set_cnx_script usage, replace cnx_scripts with ifup/ifdownOlivier Blin2004-08-041-2/+8
|
* many functions in fsedit don't modify anything, they are simply accessors.Pascal Rigaux2004-08-031-1/+2
| | | | | | | | | | | | | | | | | | | | | | | | create fs::get and move them into it - device2part(), up_mount_point() moved from fs to fs::get - part2hd(), file2part(), has_mntpoint(), mntpoint2part(), empty_all_hds() moved from fsedit to fs::get - fsedit::get_root() -> fs::get::root() - fsedit::get_root_() -> fs::get::root_() - fsedit::get_really_all_fstab() -> fs::get::really_all_fstab() - fsedit::get_all_fstab_and_holes() -> fs::get::fstab_and_holes() - fsedit::get_all_fstab() -> fs::get::fstab() - fsedit::get_all_holes() -> fs::get::holes() - fsedit::all_free_space -> fs::get::free_space() - fsedit::get_really_all_fstab() -> fs::get::really_all_fstab() - fsedit::get_fstab_and_holes() -> fs::get::hds_fstab_and_holes() - fsedit::get_holes() -> fs::get::hds_holes() - fsedit::get_fstab() -> fs::get::hds_fstab() - fsedit::free_space() -> fs::get::hds_free_space() - fsedit::get_visible_fstab() unused, removed
* (remove_initscript) simplifyThierry Vignaud2004-07-291-6/+3
|
* remove unneeded quotesOlivier Blin2004-07-261-1/+1
|
* let perl-MDK-Common do the quotingOlivier Blin2004-07-261-2/+1
|
* - %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
* merge netconnect::load_conf in netconnect::read_conf (and replace all calls ↵Olivier Blin2004-07-201-2/+1
| | | | to lload_conf with read_conf, remove all previous calls to read_conf)
* don't probe again connection type here since nowOlivier Blin2004-07-201-1/+0
| | | | | network::netconnect::load_conf does it as intended initially
* make the tcp ping actually workOlivier Blin2004-07-191-1/+9
|
* use a tcp ping in check_link_beat if not rootOlivier Blin2004-07-161-1/+1
|
* properly handle ascii WEP keys (#9884)Olivier Blin2004-06-241-0/+17
|
* remove debug messageThierry Vignaud2004-06-011-1/+0
|
* (use_windows) space cleanupThierry Vignaud2004-06-011-1/+2
|
* - kill write_initscriptDamien Chaumette2004-05-271-50/+9
| | | | | - add remove_initscript
* try to fix #3793 or at least enhance firmware seeking on windows partitionDamien Chaumette2004-04-271-2/+3
| | | | | (based upon titi's patch)
* move reread_net_conf to tools.pmDamien Chaumette2004-04-201-0/+8
|
* (read_providers_backend) move it from network::tools to network::isdnThierry Vignaud2004-03-081-3/+1
|