summaryrefslogtreecommitdiffstats
path: root/perl-install/network/network.pm
Commit message (Collapse)AuthorAgeFilesLines
...
* English proofreading (first pass)Pablo Saratxaga2003-01-211-4/+4
|
* void label removedDamien Chaumette2003-01-201-2/+2
|
* - zero conf is avaible in drakconnect, with/without dhcpDamien Chaumette2003-01-201-9/+21
| | | | | - install tmdns and zcip packages when needed
* - some changes to dhcp behavior for beta2 (not clean yet)Damien Chaumette2003-01-171-5/+13
|
* - fix /etc/hosts localhost.localdomain in localhostDamien Chaumette2003-01-161-0/+1
|
* replace occurences of "$foo ? $foo : $bar" with "$foo || $bar"Pascal Rigaux2003-01-161-1/+1
|
* have dhcp-client the default dhcp clientPascal Rigaux2003-01-161-1/+1
|
* (easy_dhcp): don't call network::configureNetwork2Pascal Rigaux2003-01-091-2/+0
|
* - fix priorityPascal Rigaux2003-01-091-1/+3
| | | | | - add a log
* pass $::prefix instead of ''Pascal Rigaux2003-01-081-1/+1
|
* fix typoPascal Rigaux2003-01-081-1/+1
|
* (easy_dhcp): cleanupPascal Rigaux2003-01-081-19/+19
|
* add network::easy_dhcp function. Quietly setup eth0 in dhcp and restart network.Damien Chaumette2003-01-071-1/+27
|
* use "if any" instead of "if grep", and various other occurences of "any", ↵Pascal Rigaux2003-01-071-3/+3
| | | | "every", "partition"
* - move any::pppConfig() to network::modem::ppp_configure()Pascal Rigaux2002-12-291-13/+23
| | | | | | | | | | | | | | | | - move any::miscellaneousNetwork() to network::network::proxy_configure() (and uses the parameter instead of $::o->{miscellaneous}) - move network::network::miscellaneousNetwork() to network::network::miscellaneous_choose() (and do not export it) (and uses a parameter instead of $::o->{miscellaneous}) - move network::modem::pppConfig() to network::modem::ppp_choose() (and change parameter order, and drop unused parameter $intf) - do not export network::network::write_interface_conf() (since it is only used locally (?)) - cleanup network::network::write_interface_conf() (one still needs to pass $::o->{miscellaneous}{track_network_id} more cleanly, and use run_program::rooted when calling /sbin/ip)
* remove exported names which are not definedPascal Rigaux2002-12-131-1/+1
|
* remove unused variables or rename them with an underscore (eg: $o becomes $_o)Pascal Rigaux2002-12-041-1/+0
|
* syntax changes to make perl_checker happyPascal Rigaux2002-12-041-2/+2
|
* More data are now fetched from system instead of drakconnect conf fileArnaud Desmons2002-12-041-2/+2
|
* use if_() where possible (as reported by perl_checker)Pascal Rigaux2002-12-041-1/+1
|
* (read_resolv_conf): simplifyPascal Rigaux2002-12-031-7/+2
|
* (add2hosts): use output and pixelizationPascal Rigaux2002-12-021-20/+7
|
* Some data are now fetched from system instead of drakconnect conf file ↵Arnaud Desmons2002-12-021-2/+2
| | | | (adsl, ppp, ifcfg-eth)
* perl_checker adaptationsPascal Rigaux2002-11-281-2/+2
|
* perl_checker adaptationsPascal Rigaux2002-11-271-2/+2
|
* added is_domain_name that checks validity of a domain name.Francois Pons2002-11-251-0/+5
|
* - add/remove spaces to make perl_checker happyPascal Rigaux2002-11-141-3/+3
| | | | | | - remove redundant parentheses - add some parentheses for clarity
* add/remove spaces to make perl_checker happyPascal Rigaux2002-11-131-2/+2
|
* add or remove spaces where need to please perl_checkerPascal Rigaux2002-11-111-1/+1
|
* - have "local *FILEHANDLE" before each "open FILEHANDLE, ..."Pascal Rigaux2002-11-061-9/+5
| | | | | - use some "cat_" and "output" where possible
* (write_resolv_conf): much cleanup (originally it was meant to introducePascal Rigaux2002-11-061-34/+37
| | | | | cat_ and output, but it ended up with a complete rewrite :)
* replace complex "unless"s with "if"sPascal Rigaux2002-11-061-2/+2
|
* replace "_" with "N" and "__" with "N_"Pascal Rigaux2002-11-061-26/+26
| | | | | | | | | | | | | | | | | | | 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!
* workaround situation when /etc/resolv.conf is an absolute link to ↵Guillaume Cottenceau2002-09-261-1/+3
| | | | /etc/ppp/resolv.conf or whatever
* fix NULL Gateway IP checkingDamien Chaumette2002-09-231-2/+2
|
* - show pcmcia ethernet cards in listDamien Chaumette2002-09-091-0/+11
|
* *** empty log message ***Damien Chaumette2002-09-051-3/+0
|
* allow http://xxx for ftp_proxyPascal Rigaux2002-09-051-1/+1
|
* - correct typos in orinoco orinoco_cs modulesDaouda Lo2002-09-041-1/+1
|
* - fix previous behavior in Expert mode... (100% lazy loop free this time)Damien Chaumette2002-09-021-5/+5
|
* fix looping on network step when configuring ethernet cardGuillaume Cottenceau2002-08-301-1/+1
|
* *** empty log message ***Damien Chaumette2002-08-271-2/+2
|
* - new 'previous' button bug fixDamien Chaumette2002-08-271-2/+2
|
* fix 'previous' button strange behaviorDamien Chaumette2002-08-221-1/+2
|
* o remove old /etc/hosts entries for the hostname before adding new oneDamien Chaumette2002-08-191-1/+6
|
* - fix reading previous keyboard config on upgrade (for displaying in summary)Pascal Rigaux2002-08-121-1/+1
| | | | | | - 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)
* s/__END__/1;Thierry Vignaud2002-08-051-1/+1
|
* kill "wonderful perl"Thierry Vignaud2002-08-051-4/+1
|
* make perl_checker happy again (replacing "{xx}->{yy}" by "{xx}{yy}")Pascal Rigaux2002-07-311-1/+1
|
* replace "$foo" with $fooPascal Rigaux2002-07-311-1/+1
|