summaryrefslogtreecommitdiffstats
path: root/perl-install/network
Commit message (Collapse)AuthorAgeFilesLines
* many functions in fsedit don't modify anything, they are simply accessors.Pascal Rigaux2004-08-032-1/+3
| | | | | | | | | | | | | | | | | | | | | | | | 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
* introduce ->ensure_binary_is_installed and use itPascal Rigaux2004-08-025-7/+7
|
* in sagem start section, modprobe eagle-usb and do not wait for syncOlivier Blin2004-08-021-1/+4
| | | | | here, fctStartAdsl will handle that when pppd is called
* in speedtouch start section, modprobe speedtch module and useOlivier Blin2004-08-021-1/+4
| | | | | speedtouch-start instead of directly using modem_run
* in install, run modem start scripts once config is writtenOlivier Blin2004-08-021-0/+2
|
* sagem: use fctStartAdsl to wait for sync, up the interface and get interface ↵Olivier Blin2004-07-301-1/+1
| | | | name
* (remove_initscript) simplifyThierry Vignaud2004-07-291-6/+3
|
* (handle_multiple_cnx) only restart network for ADSL if we use anThierry Vignaud2004-07-291-1/+1
| | | | | ethernet modem
* split server and plugin options, in order to support again bewanOlivier Blin2004-07-291-4/+9
| | | | | modems (pppd_options wasn't used anywhere, they couldn't work)
* do not write a blank "pty" option in ppp config file is there is noOlivier Blin2004-07-281-1/+2
| | | | | pty command (should fix some problems with Bewan modems)
* it's probably better to rely on modem_run since speedtouch.sh may be droppedOlivier Blin2004-07-281-1/+1
|
* - use option -g for smbclient -L, this fixes bad parsing of formatted ↵Pascal Rigaux2004-07-281-14/+20
| | | | | | | smbclient output - skip "netlogon" Disk share (lowercase letters)
* - add field {fs_type} partially replacing {pt_type}Pascal Rigaux2004-07-271-2/+2
| | | | | | | | | | | | | | | | | | | | {pt_type} is always a number, {fs_type} is always a string - introduce set_isFormatted() (to ensure {notFormatted} but also {fs_type_from_magic} and {bad_fs_type_magic} are updated) - don't use 0x483 for ext3 anymore (same for reiserfs...), the type_name gives both a pt_type and a fs_type - many accessors from partition_table removed (type2fs(), fs2pt_type()) - remove isThisFs() (not useful anymore since we can use directly {fs_type}) - remove isFat() (inline the function) - other isXXX() from partition_table are moved to fs::type - part2name() is now fs::type::part2type_name - name2pt_type() is now fs::type::type_name2subpart() - partition_table::important_types() is now fs::type::type_names() - fsedit::typeOfPart() is now fs::type::fs_type_from_magic() - no need to truncate type_name since they are shorter
* '-e 1' option is unneeded with speedtouch >= 1.3Olivier Blin2004-07-271-1/+1
|
* remove unneeded quotesOlivier Blin2004-07-261-1/+1
|
* let perl-MDK-Common do the quotingOlivier Blin2004-07-261-2/+1
|
* hey, I suck, that's DIAL_ON_IFUP, not DIAL_ON_BOOTOlivier Blin2004-07-232-6/+6
|
* perl_checker complianceOlivier Blin2004-07-231-3/+3
|
* one more FIXME commentOlivier Blin2004-07-231-0/+1
|
* - introduce ONBOOT and DIAL_ON_BOOT settings for isdn connectionsOlivier Blin2004-07-233-5/+32
| | | | | | - write this settings with configureNetwork2, kill the old tweak in isdn.pm - use the isdn_dial_on_boot step instead of nework_on_boot in netconnect.pm
* FIRMWARE isn't used by ifup-ipppOlivier Blin2004-07-231-2/+0
|
* pptp connections are now handled by pppd (#6515)Olivier Blin2004-07-231-5/+0
|
* perl_checker compliancePascal Rigaux2004-07-221-1/+1
|
* - don't use if_() when not needed and strangePascal Rigaux2004-07-221-4/+4
| | | | | - read_tmdns_conf() now knows which file it reads, don't give it as argument
* (read_tmdns_conf) unbreak oblin codeThierry Vignaud2004-07-221-1/+1
|
* (read_tmdns_conf) reinsert parameter naming for parameter checkingThierry Vignaud2004-07-221-1/+2
|
* rewrite read_tmdns_conf to use cat_Olivier Blin2004-07-221-10/+1
|
* perl_checker/misc fixesOlivier Blin2004-07-221-2/+5
|
* - %modules::conf is no more a global, so many functions need passing ↵Pascal Rigaux2004-07-217-51/+52
| | | | | | | | | | | | | | | $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
* perl_checker compliancePascal Rigaux2004-07-211-1/+1
|
* fix perl_checker combo (yeah)Olivier Blin2004-07-201-1/+1
|
* oops, fix suckinessOlivier Blin2004-07-201-1/+1
|
* use read_net_conf to avoid code duplicationOlivier Blin2004-07-201-3/+2
|
* merge netconnect::load_conf in netconnect::read_conf (and replace all calls ↵Olivier Blin2004-07-202-14/+13
| | | | to lload_conf with read_conf, remove all previous calls to read_conf)
* unused variableOlivier Blin2004-07-201-1/+1
|
* don't probe again connection type here since nowOlivier Blin2004-07-201-1/+0
| | | | | network::netconnect::load_conf does it as intended initially
* don't forget to send $netcnx to network::network::read_all_conf ...Olivier Blin2004-07-201-1/+1
| | | | | (or else we won't get back the probed connection type)
* *** empty log message ***Vicent Guardiola2004-07-191-3/+1
|
* Add function write_smb_ads_confVicent Guardiola2004-07-191-0/+32
|
* make the tcp ping actually workOlivier Blin2004-07-191-1/+9
|
* do not write wireless encryption key if emptyOlivier Blin2004-07-191-1/+1
|
* use hotplug blacklist for adsl connections tooOlivier Blin2004-07-191-4/+10
|
* use a tcp ping in check_link_beat if not rootOlivier Blin2004-07-161-1/+1
|
* - rename add_alias() into set_alias()Pascal Rigaux2004-07-082-3/+3
| | | | | - create set_sound_slot() and use it
* modules::mergein_conf() doesn't need to be given /etc/modules.confPascal Rigaux2004-07-072-2/+2
| | | | | => prepare for reading either modprobe.conf or modules.conf based on the running kernel version
* big renaming of field {type} to {pt_type},Pascal Rigaux2004-07-051-2/+2
| | | | | | this will allow defining {fs_type} which will always be a string whereas {pt_type} will always be a number
* remove spurious '"pty ', I suckOlivier Blin2004-07-021-1/+1
|
* pptp support (partial fix for #6515)Olivier Blin2004-07-021-1/+8
|
* typo fixThierry Vignaud2004-07-011-1/+1
|
* shut up "smbclient -L"Pascal Rigaux2004-06-301-1/+1
|