Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Maybe the last Mandrake->Mandriva replacement. | Funda Wang | 2005-04-27 | 1 | -1/+1 |
| | |||||
* | s/Mandrivalinux/Mandriva Linux/ | Pablo Saratxaga | 2005-04-23 | 1 | -1/+1 |
| | |||||
* | switch from MandrakeSoft to Mandriva | Thierry Vignaud | 2005-04-21 | 1 | -1/+1 |
| | |||||
* | fix typo (bugzilla #15116) | Pascal Rigaux | 2005-03-31 | 1 | -2/+2 |
| | |||||
* | log what we are doing | Pascal Rigaux | 2005-03-24 | 1 | -0/+1 |
| | |||||
* | return the user choices | Pascal Rigaux | 2005-03-24 | 1 | -1/+3 |
| | |||||
* | - there is no reason to have string ref for ports | Pascal Rigaux | 2005-03-24 | 1 | -12/+8 |
| | | | | | - replace main_auto_install() with default_ports() | ||||
* | network::drakfirewall::set_ports() doesn't *need* a $in anymore, and it ↵ | Pascal Rigaux | 2005-03-24 | 1 | -4/+14 |
| | | | | doesn't die when no network card | ||||
* | - network::shorewall::default_interfaces_silent() does not need any parameter | Pascal Rigaux | 2005-03-24 | 1 | -8/+7 |
| | | | | | | | - network::shorewall::read() is simpler with a $o_in - network::drakfirewall::default_from_pkgs() is non interactive, better give it a do_pkgs - cleanup as little as possible | ||||
* | supplement previous half-fix | Olivier Blin | 2005-02-01 | 1 | -1/+1 |
| | |||||
* | port 445 is used for Samba (without NetBios) | Olivier Blin | 2005-02-01 | 1 | -1/+1 |
| | |||||
* | use new range syntax for smb | Olivier Blin | 2005-02-01 | 1 | -1/+1 |
| | |||||
* | "Samba server" is better named "Windows Files Sharing (SMB)" (bugzilla #10585) | Pascal Rigaux | 2004-12-24 | 1 | -1/+1 |
| | |||||
* | introduce ->ensure_binary_is_installed and use it | Pascal Rigaux | 2004-08-02 | 1 | -1/+1 |
| | |||||
* | mark it as translatable for non alphabetic languages | Thierry Vignaud | 2004-06-01 | 1 | -1/+1 |
| | |||||
* | - BitTorrent support added | Robert Vojta | 2004-05-25 | 1 | -0/+6 |
| | |||||
* | open more ports for samba | Thierry Vignaud | 2004-05-05 | 1 | -1/+1 |
| | |||||
* | perl now handle cleanly utf8 string in exceptions, no need to die \N("...") | Pascal Rigaux | 2004-04-05 | 1 | -1/+1 |
| | |||||
* | spell Mandrakelinux in one word | Thierry Vignaud | 2004-03-10 | 1 | -1/+1 |
| | |||||
* | remove the masq zone and add policies, rules only if there is an interface ↵ | Florin Grad | 2004-02-27 | 1 | -1/+1 |
| | | | | in loc | ||||
* | - add icmp support | Pascal Rigaux | 2004-01-16 | 1 | -2/+9 |
| | | | | | - add "Echo request (ping)" choice | ||||
* | allow a range of ports (anthill bug #267) | Pascal Rigaux | 2004-01-12 | 1 | -3/+8 |
| | |||||
* | - translate all server names | Thierry Vignaud | 2003-10-14 | 1 | -5/+5 |
| | | | | | - harmonize server names | ||||
* | readd strict & diagnostics pragma removed by florin | Thierry Vignaud | 2003-10-13 | 1 | -2/+2 |
| | |||||
* | perl_checker fixes | Pascal Rigaux | 2003-09-29 | 1 | -3/+3 |
| | |||||
* | allow drakfirewall to choose the interface | Florin Grad | 2003-09-24 | 1 | -9/+7 |
| | |||||
* | fix pkg to install for samba | Thierry Vignaud | 2003-08-26 | 1 | -1/+1 |
| | |||||
* | offer samba in services list | Thierry Vignaud | 2003-08-22 | 1 | -0/+6 |
| | |||||
* | new perl_checker compliance | Pascal Rigaux | 2003-04-17 | 1 | -3/+3 |
| | |||||
* | to workaround perl bug removing UTF8 flag when passing scalars to die's, pass | Guillaume Cottenceau | 2003-02-19 | 1 | -1/+1 |
| | | | | | | a scalar-ref. but we need to de-ref, so it might break many things :). let's make a prayer :). | ||||
* | translate server {name} at display-time, not compile-time | Pascal Rigaux | 2003-02-17 | 1 | -5/+5 |
| | |||||
* | install package shorewall only when the user wants a firewall | Pascal Rigaux | 2003-02-14 | 1 | -7/+9 |
| | |||||
* | English proofreading by Stew Benedicts | Pablo Saratxaga | 2003-01-21 | 1 | -1/+1 |
| | |||||
* | use "if any" instead of "if grep", and various other occurences of "any", ↵ | Pascal Rigaux | 2003-01-07 | 1 | -5/+4 |
| | | | | "every", "partition" | ||||
* | remove unused variables or rename them with an underscore (eg: $o becomes $_o) | Pascal Rigaux | 2002-12-04 | 1 | -1/+1 |
| | |||||
* | add or remove spaces where need to please perl_checker | Pascal Rigaux | 2002-11-11 | 1 | -1/+1 |
| | |||||
* | replace "_" with "N" and "__" with "N_" | Pascal Rigaux | 2002-11-06 | 1 | -12/+12 |
| | | | | | | | | | | | | | | | | | | | 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! | ||||
* | add a silly message | Florin Grad | 2002-09-17 | 1 | -0/+5 |
| | |||||
* | - replace tinyfirewall by drakfirewall | Daouda Lo | 2002-09-02 | 1 | -0/+180 |