1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
<?php $mirrors = array (
'_C:EU' =>
array (
0 =>
array (
'zone' => 'FR',
'country' => 'FR',
'city' => 'Paris',
'url' => 'ftp://distrib-coffee.ipsl.jussieu.fr/pub/linux/Mageia',
),
1 =>
array (
'zone' => 'FR',
'country' => 'FR',
'city' => 'Paris',
'url' => 'ftp://ftp.free.fr/mirrors/mageia.org',
),
2 =>
array (
'zone' => 'FR',
'country' => 'FR',
'city' => 'Paris',
'url' => 'http://distrib-coffee.ipsl.jussieu.fr/pub/linux/Mageia',
),
3 =>
array (
'zone' => 'FR',
'country' => 'FR',
'city' => 'Paris',
'url' => 'http://ftp.free.fr/mirrors/mageia.org',
),
),
); ?>
|