blob: 0e19a358fffc01d139fca92f1d0d98063366c891 (
plain)
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
|
<?php
/**
* Helper script to:
* - fetch built ISOs info (names, checksums, sizes, langs, etc.)
* - build a catalog that can be used for the Web site download redirector
* (in var/definitions)
*
* PHP 5.3
*
* @license http://www.opensource.org/licenses/MIT MIT
* @author Romain d'Alverny @rdalverny
*/
// params
$prefix = 'Mageia-2-rc';
$bcd_path = 'mageia2-rc';
$bcd_url = 'rsync://bcd.mageia.org/isos/%s/';
// don't touch below
$ts0 = microtime(true);
require_once __DIR__ . '/lib/FIDD.php';
FIDD::run(__DIR__, sprintf($bcd_url, $bcd_path), $prefix);
echo sprintf("done in %2.2f s.\n", microtime(true) - $ts0);
exit(0);
|