summaryrefslogtreecommitdiffstats
path: root/tools/2adsldb.pm
blob: 23328aafcc8a266c0430237943811b083038c265 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
open F, "isplist.txt" or die "file $file not found";
open G, ">tutu" or die "file $file not found";
foreach (<F>) {
    s/\#.*//;
    /.*ADSL.*/ or  next;
#| NOM | PAYS | CONNECTION | MAILTYPE | SMTP | MAILSERVER | NEWS | MY1DNS | MY2DNS | PROXY | PROXYSERVER | DHCP | EMAIL
    s/(.*)france(.*)/$1France$2/;
    s/(.*)FRANCE(.*)/$1France$2/;
    s/(.*)USA(.*)/$1United States$2/;
    s/(.*)U.S.A(.*)/$1United States$2/;
    s/(.*)US(.*)/$1United States$2/;
    s/(.*)usa(.*)/$1United States$2/;
    s/(.*)club-internet(.*)/$1club internet$2/;
    my ($name, $country, $connexion, $mailtype, $smtp, $popserver, $mailserver, $news, $dns1, $dns2, $proxy, $proxyserver, $dhcp, $email) = split /\|/;
    print G join("|", $country, join("=>", $name,   $dns1, $dns2)), "\n"; #$domain,
}

kefile?h=17.16&id=cab2d5d83956892c3f5ce8f130e1245ffc7f6020'>perl-install/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/Makefile b/perl-install/Makefile
index 60d8cab2b..6c79c43f3 100644
--- a/perl-install/Makefile
+++ b/perl-install/Makefile
@@ -25,7 +25,7 @@ $(DIRS):
$(MAKE) -C $@
test_pms: verify_c
- for i in install2 install_steps_*.pm standalone/keyboarddrake standalone/XFdrake standalone/drakboot; do perl_checker -I. -no_cw -excludec -excluderesize_fat::c_rewritten $$i; done
+ for i in install2 install_steps_*.pm standalone/keyboarddrake standalone/XFdrake standalone/drakboot; do perl_checker -I. -no_cw -excludec -excluderesize_fat::c_rewritten -excludeMDK::Common::Globals $$i; done
for i in install2 install_steps_*.pm; do perl -cw -I. $$i; done
verify_c: