summaryrefslogtreecommitdiffstats
path: root/perl-install/network
Commit message (Collapse)AuthorAgeFilesLines
* (find_exports): use run_program::raw + stdoutPascal Rigaux2002-12-031-9/+5
|
* cleanup use of filehandlesPascal Rigaux2002-12-031-20/+15
|
* (read_resolv_conf): simplifyPascal Rigaux2002-12-031-7/+2
|
* make it $::testing awareGuillaume Cottenceau2002-12-031-0/+1
|
* (add2hosts): use output and pixelizationPascal Rigaux2002-12-021-20/+7
|
* use output_with_perm()Pascal Rigaux2002-12-024-27/+16
|
* Some data are now fetched from system instead of drakconnect conf file ↵Arnaud Desmons2002-12-024-41/+47
| | | | (adsl, ppp, ifcfg-eth)
* perl_checker adaptationsPascal Rigaux2002-11-286-14/+14
|
* perl_checker adaptationsPascal Rigaux2002-11-281-2/+2
|
* perl_checker adaptationsPascal Rigaux2002-11-276-13/+13
|
* in network::netconnect::main(), declare @l as it should be. But the code is ↵Pascal Rigaux2002-11-251-1/+2
| | | | really wrong, it NEEDS fixing
* - $up was my-ed inside the if-then block though it was used outside the ↵Pascal Rigaux2002-11-251-2/+3
| | | | | | | block (hint: buggy code) - my @country as it should be
* $modem is redefined 2 lines below its first declaration. this first ↵Pascal Rigaux2002-11-251-1/+0
| | | | declaration is useless (??)
* since $mouse is undefined, replace it with undef (??)Pascal Rigaux2002-11-251-1/+1
|
* add support for Sagem USB Modem (for free.fr ;-))Francois Pons2002-11-251-2/+14
|
* add support ADIModem.Francois Pons2002-11-251-2/+3
|
* removed reference to ...->{nb_cards} no more used.Francois Pons2002-11-251-2/+0
|
* removed old code (commented out).Francois Pons2002-11-251-14/+0
|
* removed 2 labels and 2 gotos by a very simple while, dam's is really greatFrancois Pons2002-11-251-6/+5
| | | | | sometimes ;-)
* added is_domain_name that checks validity of a domain name.Francois Pons2002-11-251-0/+5
|
* default dhcp client is dhcp-clientFrederic Lepied2002-11-191-8/+8
|
* make perl_checker happyPascal Rigaux2002-11-183-7/+5
|
* - add/remove spaces to make perl_checker happyPascal Rigaux2002-11-143-6/+6
| | | | | | - remove redundant parentheses - add some parentheses for clarity
* add/remove spaces to make perl_checker happyPascal Rigaux2002-11-137-58/+58
|
* add/remove spaces to make perl_checker happyPascal Rigaux2002-11-133-3/+3
|
* add/remove some spaces to make perl_checker happyPascal Rigaux2002-11-121-3/+3
|
* - replace ... =~ 'foo' with ... =~ /foo/Pascal Rigaux2002-11-114-16/+15
| | | | | - remove unneeded parentheses for things like ... if (...)
* add or remove spaces where need to please perl_checkerPascal Rigaux2002-11-1110-30/+30
|
* various small syntax enhancements to please perl_checkerPascal Rigaux2002-11-111-1/+1
|
* replace qq{...} with qq(...)Pascal Rigaux2002-11-111-4/+4
|
* don't return a typeglob ref, return the typeglob (reference to typeglobs arePascal Rigaux2002-11-101-1/+1
| | | | | | soft references which doesn't increment the ref count) (thanks to Gerard Patel for the precise bug report)
* - do not use q{...} to please perl_checkerPascal Rigaux2002-11-091-7/+6
| | | | | | - use <<'EOF' instead - at the same time, fix the "\n" at the beginning of the generated script
* - have "local *FILEHANDLE" before each "open FILEHANDLE, ..."Pascal Rigaux2002-11-062-9/+6
| | | | | - 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 :)
* make perl_checker happyPascal Rigaux2002-11-061-0/+1
|
* replace complex "unless"s with "if"sPascal Rigaux2002-11-063-7/+7
|
* replace "_" with "N" and "__" with "N_"Pascal Rigaux2002-11-069-181/+181
| | | | | | | | | | | | | | | | | | | 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!
* few reworks for winmodem detectionDamien Chaumette2002-10-281-15/+12
|
* add sub winmodemConfigureDamien Chaumette2002-10-281-0/+19
|
* perl_checker fixesThierry Vignaud2002-10-231-0/+1
|
* make perl_checker happy: replace PKG::f with PKG::f()Pascal Rigaux2002-10-231-1/+1
|
* remove useless 'pop'Damien Chaumette2002-10-181-2/+1
|
* change dumb return values s/@pci_modems, $serial_modem/$serial_modem, ↵Damien Chaumette2002-10-181-1/+1
| | | | @pci_modems/ (thanks to pixel)
* make new perl_checker happy: replacing PKG::f by PKG::f()Pascal Rigaux2002-10-171-1/+1
|
* "=head" doc must end with "=cut"Pascal Rigaux2002-10-171-0/+2
|
* document network::netconnect::detect()Thierry Vignaud2002-10-171-0/+17
|
* - winmodem detection fixDamien Chaumette2002-10-161-1/+1
|
* fix speedtouch detectionDamien Chaumette2002-10-111-1/+2
|
* notify if speedtouch is detected or notDamien Chaumette2002-10-101-13/+9
|
* - move serial modem detection to detect_devices.pmDamien Chaumette2002-10-101-32/+1
| | | | | | - add speedtouch USB detection - add winmodem detection