summaryrefslogtreecommitdiffstats
path: root/perl-install/network
Commit message (Collapse)AuthorAgeFilesLines
* don't need use MDK::Common... when we have "use common" (which is the ↵Pascal Rigaux2005-06-102-2/+1
| | | | standard for libDrakX modules)
* - move functions using /proc/partitions out of fsedit to fs::proc_partitionsPascal Rigaux2005-06-1010-14/+3
| | | | | | - remove unneeded "use xxx" - add some "use xxx" (nb: not completly needed because some other modules may do it)
* write_secret_backend isn't exported anymoreOlivier Blin2005-06-101-1/+1
|
* use services::enable() and services::disable()Olivier Blin2005-06-102-5/+5
|
* add some "use xxx;" (the idea is to see what the package needs, but i may ↵Pascal Rigaux2005-06-102-0/+3
| | | | rollback after understanding better dependencies)
* - create network::pxe out of drakpxelinux (pxe configuration files management)Olivier Blin2005-06-101-0/+180
| | | | | | | | | | | | - get_items() -> network::pxe::read_pxelinux_conf() - don't read comments in pxelinux configuration file - store pxelinux configuration in a hash to avoid multiple cat_() - add network::pxe::list_pxelinux_labels() to get labels from a pxelinux configuration - only overwrite pxelinux settings (prompt, timeout, ...) when pxe is reconfigured - use network::network and network::tools to get hostname, domain name, IP address, net interface - move row creation code in set_pxelinux_entry_at_iter() and factorize - use ensure_is_installed to make sure pxe is installed
* add get_interface_ip_address (with bits from drakpxelinux)Olivier Blin2005-06-091-0/+6
|
* - added senegal ADSL provider entryDaouda Lo2005-06-091-0/+10
|
* remove non-ASCII characterOlivier Blin2005-06-091-1/+1
|
* allow to install ndiswrapper drivers during installOlivier Blin2005-06-081-2/+3
|
* use prefix only once it has been defined by installOlivier Blin2005-06-082-19/+23
|
* do not crash when restarting shorewallOlivier Blin2005-06-071-0/+1
|
* don't be fooled by if_ not short-circuiting and auto-vivification, use ↵Olivier Blin2005-06-071-2/+2
| | | | $conf->{masq_subnet} instead of $conf->{masquerade}{subnet} (i.e. do not write buggy shorewall masqfile when connection sharing is disabled)
* make it more readableOlivier Blin2005-06-061-1/+1
|
* set system hostname when writing network configurationOlivier Blin2005-06-061-0/+1
|
* update commentsOlivier Blin2005-06-061-2/+2
|
* add ISP field in eagle-usb.confOlivier Blin2005-06-061-1/+1
|
* API change (me sux)Olivier Blin2005-06-061-6/+3
|
* keep NETWORKING_IPV6 and FORWARD_IPV4 variables in /etc/sysconfig/networkOlivier Blin2005-06-031-2/+3
|
* net interface is now in $net->{net_interface}Olivier Blin2005-06-031-4/+4
|
* help perl_checkerThierry Vignaud2005-06-031-1/+1
|
* fix pixel sucksThierry Vignaud2005-06-031-1/+1
|
* - merge network settings in a $net hash (it modifies $o fields too):Olivier Blin2005-06-038-632/+374
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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 unused variable, this is done in detect_devices::get_sysfs_device_id_map()Olivier Blin2005-06-031-1/+0
|
* be more in drakx spirit, and more important perl_checker warning cleanPascal Rigaux2005-06-031-2/+1
|
* use services::set_statusOlivier Blin2005-05-311-6/+3
|
* - rename "hw_account" step as "isdn_account"Olivier Blin2005-05-311-10/+7
| | | | | | - remove unneeded code - don't overwrite huptimeout value
* tag obscure isdn card settings as advancedOlivier Blin2005-05-311-5/+5
|
* if__(exists $foo, $bar) returns $bar whatever $foo is, don't try toOlivier Blin2005-05-311-25/+18
| | | | | | make smart code that don't work (initial goal was probably to hide some isdn settings if they weren't set)
* really handle irq, mem, io, io0, io1 isdn paramaters (i.e. finish theOlivier Blin2005-05-311-5/+5
| | | | | "fix parameters reading/writin in isdn config" commit from Titi)
* read I4L_IDLETIME settingOlivier Blin2005-05-311-0/+1
|
* handle huptimeout setting again (I4L_IDLETIME in isdn4net)Olivier Blin2005-05-312-1/+2
|
* add no_club option to specify that no club drivers are available (ECI)Olivier Blin2005-05-301-14/+17
|
* move netprofile stuff in network::networkOlivier Blin2005-05-302-39/+42
|
* add missing closing braceOlivier Blin2005-05-301-0/+2
|
* external isdn modems don't require the "isdn_dial_on_boot" stepOlivier Blin2005-05-301-1/+1
|
* $netc->{isdntype} is unneededOlivier Blin2005-05-301-2/+1
|
* simply isdn external modem code (remove $netcnx->{isdn_external})Olivier Blin2005-05-301-12/+9
|
* remove unneeded commentsOlivier Blin2005-05-301-3/+0
|
* use network::thirdparty for modem devicesOlivier Blin2005-05-301-42/+14
|
* allow to ask for some configuration fields (useful for "device" in "rtc" ↵Olivier Blin2005-05-301-1/+6
| | | | category)
* initial import of network::thirdparty (this module factorizes the thirdparty ↵Olivier Blin2005-05-273-105/+449
| | | | software/drivers/firmwares detection and installation code, it points the user to the relevant packages/documentation/url if needed, and don't allow to configure a device if its requirements aren't satisfied)
* create $ask_shorewall_interface_label, shorewall_interface_choices()Olivier Blin2005-05-261-10/+21
| | | | | | and set_net_interface() out of ask_shorewall_interface() to avoid code duplication
* perl_checker fixesOlivier Blin2005-05-261-1/+1
|
* better way to handle squid ports (read shorewall REDIRECT rules in ↵Olivier Blin2005-05-261-7/+6
| | | | network::shorewall::read to avoid tricks in network::shorewall::write)
* read_squid_conf() is now in network::squidOlivier Blin2005-05-261-1/+1
|
* simplify check_iptables()Olivier Blin2005-05-261-4/+2
|
* use if_()Olivier Blin2005-05-251-1/+1
|
* initial import, move read_dhcpd_conf() from network::network and split ↵Olivier Blin2005-05-241-0/+51
| | | | write_dhcpd_conf() from drakgw
* initial import, move read_squid_conf() from network::network and split ↵Olivier Blin2005-05-241-0/+73
| | | | write_squid_conf() from drakgw