aboutsummaryrefslogtreecommitdiffstats
path: root/fidd.php
diff options
context:
space:
mode:
authorManuel Hiebel <leuhmanu@mageia.org>2022-11-11 21:50:41 +0100
committerManuel Hiebel <leuhmanu@mageia.org>2022-11-11 21:50:41 +0100
commita7b482ebad9b36ce8fa48fd18288868a29ed9521 (patch)
treef360416ba8f0183d44d9a641c5fdd0288573f934 /fidd.php
parent4eada4dec308ebea1a5c17839e5cf3f73ca78f32 (diff)
downloadfidd-a7b482ebad9b36ce8fa48fd18288868a29ed9521.tar
fidd-a7b482ebad9b36ce8fa48fd18288868a29ed9521.tar.gz
fidd-a7b482ebad9b36ce8fa48fd18288868a29ed9521.tar.bz2
fidd-a7b482ebad9b36ce8fa48fd18288868a29ed9521.tar.xz
fidd-a7b482ebad9b36ce8fa48fd18288868a29ed9521.zip
Extends netinstall function to rename directly the good stuffHEADmaster
Diffstat (limited to 'fidd.php')
-rw-r--r--fidd.php8
1 files changed, 5 insertions, 3 deletions
diff --git a/fidd.php b/fidd.php
index 62ad91d..a8462d8 100644
--- a/fidd.php
+++ b/fidd.php
@@ -14,12 +14,14 @@
// params
$prefix = '';
-$bcd_path = '8';
+$bcd_path = 'cauldron';
+
+$netinstall_rename = '9-alpha1';
//$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/';
+$netinstall = 'rsync://distrib-coffee.ipsl.jussieu.fr/pub/linux/Mageia/distrib/cauldron/';
// don't touch below
@@ -27,7 +29,7 @@ $ts0 = microtime(true);
require_once __DIR__ . '/lib/FIDD.php';
-FIDD::run(__DIR__, $netinstall, $prefix, true);
+FIDD::run(__DIR__, $netinstall, $prefix, true, $netinstall_rename);
FIDD::run(__DIR__, sprintf($bcd_url, $bcd_path), $prefix);
echo sprintf("done in %2.2f s.\n", microtime(true) - $ts0);