From 481af1fa39533e3da77e271d33b53f09dd5ebabb Mon Sep 17 00:00:00 2001 From: Thierry Parmentelat Date: Fri, 21 Nov 2025 09:21:26 +0100 Subject: [PATCH] default to f43 --- create-vm.sh | 2 +- lbuild-initvm.sh | 2 +- lbuild-nightly.sh | 2 +- pkgs.py | 4 ++-- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/create-vm.sh b/create-vm.sh index ac5e9682..8d8cc4bd 100755 --- a/create-vm.sh +++ b/create-vm.sh @@ -28,7 +28,7 @@ LOGS=$HOME/machines DOMAIN=pl.sophia.inria.fr -DEFAULT_DISTRO=f41 +DEFAULT_DISTRO=f43 DEFAULT_MEMORY=16384 CONFIRM= diff --git a/lbuild-initvm.sh b/lbuild-initvm.sh index a39c24ca..5394cd81 100755 --- a/lbuild-initvm.sh +++ b/lbuild-initvm.sh @@ -30,7 +30,7 @@ function lxcroot () { # XXX fixme : when creating a 32bits VM we need to call linux32 as appropriate...s -DEFAULT_FCDISTRO=f41 +DEFAULT_FCDISTRO=f43 DEFAULT_PLDISTRO=lxc DEFAULT_PERSONALITY=linux64 DEFAULT_MEMORY=3072 diff --git a/lbuild-nightly.sh b/lbuild-nightly.sh index e69924c8..e676d70a 100755 --- a/lbuild-nightly.sh +++ b/lbuild-nightly.sh @@ -11,7 +11,7 @@ COMMAND=$(basename $0) export PATH=$PATH:/bin:/sbin # default values, tunable with command-line options -DEFAULT_FCDISTRO=f41 +DEFAULT_FCDISTRO=f43 DEFAULT_PLDISTRO=lxc DEFAULT_PERSONALITY=linux64 DEFAULT_MAILDEST="thierry.parmentelat at inria.fr" diff --git a/pkgs.py b/pkgs.py index c588e5c0..4ba02afc 100755 --- a/pkgs.py +++ b/pkgs.py @@ -36,7 +36,7 @@ import re default_arch = 'x86_64' known_archs = ['i386', 'i686', 'x86_64'] -default_fcdistro = 'f41' +default_fcdistro = 'f43' known_fcdistros = [ 'centos5', 'centos6', # oldies but we have references to that in the pkgs files @@ -45,7 +45,7 @@ known_fcdistros = [ # these ones are still relevant; # f32 is mentioned to be able to use create-vms with that distro # as we're running into issues to build a minimal f33 from a f29 host - 'f29', 'f31', 'f32', 'f33', 'f35', 'f37', 'f39', 'f41', + 'f29', 'f31', 'f32', 'f33', 'f35', 'f37', 'f39', 'f41', 'f43', # scientific linux 'sl6', # debians -- 2.51.1