aboutsummaryrefslogtreecommitdiffstats
path: root/fidd.php
diff options
context:
space:
mode:
authorManuel Hiebel <leuhmanu@mageia.org>2021-04-03 09:31:33 +0200
committerManuel Hiebel <leuhmanu@mageia.org>2021-04-03 09:31:33 +0200
commit4eada4dec308ebea1a5c17839e5cf3f73ca78f32 (patch)
tree58495b9ced57477ca85a66223455761f24dc9f2b /fidd.php
parentebe227967e3ac42a8eacae14a56d1ad920e333d9 (diff)
downloadfidd-4eada4dec308ebea1a5c17839e5cf3f73ca78f32.tar
fidd-4eada4dec308ebea1a5c17839e5cf3f73ca78f32.tar.gz
fidd-4eada4dec308ebea1a5c17839e5cf3f73ca78f32.tar.bz2
fidd-4eada4dec308ebea1a5c17839e5cf3f73ca78f32.tar.xz
fidd-4eada4dec308ebea1a5c17839e5cf3f73ca78f32.zip
Add netinstall to the builded catalog
Diffstat (limited to 'fidd.php')
-rw-r--r--fidd.php9
1 files changed, 6 insertions, 3 deletions
diff --git a/fidd.php b/fidd.php
index 3a5f741..62ad91d 100644
--- a/fidd.php
+++ b/fidd.php
@@ -13,18 +13,21 @@
// params
-$prefix = '/mageia8-alpha1';
-$bcd_path = 'cauldron/mageia8-alpha1';
+$prefix = '';
+$bcd_path = '8';
-#$bcd_url = 'rsync://isoqa@bcd.mageia.org/isos/%s/';
+//$bcd_url = 'rsync://isoqa@bcd.mageia.org/isos/%s/';
$bcd_url = 'rsync://distrib-coffee.ipsl.jussieu.fr/pub/linux/Mageia/iso/%s/';
+$netinstall = 'rsync://distrib-coffee.ipsl.jussieu.fr/pub/linux/Mageia/distrib/8/';
+
// don't touch below
$ts0 = microtime(true);
require_once __DIR__ . '/lib/FIDD.php';
+FIDD::run(__DIR__, $netinstall, $prefix, true);
FIDD::run(__DIR__, sprintf($bcd_url, $bcd_path), $prefix);
echo sprintf("done in %2.2f s.\n", microtime(true) - $ts0);