diff --git a/src/pylorax/__init__.py b/src/pylorax/__init__.py index 665007b9..f3e73c3a 100644 --- a/src/pylorax/__init__.py +++ b/src/pylorax/__init__.py @@ -61,7 +61,7 @@ else: DRACUT_DEFAULT = ["--xz", "--install", "/.buildstamp", "--no-early-microcode", "--add", "fips"] # Used for DNF conf.module_platform_id -DEFAULT_PLATFORM_ID = "platform:f30" +DEFAULT_PLATFORM_ID = "platform:f32" class ArchData(DataHolder): lib64_arches = ("x86_64", "ppc64le", "s390x", "ia64", "aarch64") diff --git a/src/pylorax/cmdline.py b/src/pylorax/cmdline.py index df79310f..e3b91585 100644 --- a/src/pylorax/cmdline.py +++ b/src/pylorax/cmdline.py @@ -300,7 +300,7 @@ def lmc_parser(dracut_default=""): help="Substituted for @TITLE@ in bootloader config files") parser.add_argument("--project", default="Linux", help="substituted for @PROJECT@ in bootloader config files") - parser.add_argument("--releasever", default="29", + parser.add_argument("--releasever", default="32", help="substituted for @VERSION@ in bootloader config files") parser.add_argument("--volid", default=None, help="volume id") parser.add_argument("--squashfs-only", action="store_true", default=False, diff --git a/src/pylorax/creator.py b/src/pylorax/creator.py index a09b02ae..4f61d6fa 100644 --- a/src/pylorax/creator.py +++ b/src/pylorax/creator.py @@ -134,7 +134,7 @@ def squashfs_args(opts): def make_appliance(disk_img, name, template, outfile, networks=None, ram=1024, vcpus=1, arch=None, title="Linux", project="Linux", - releasever="29"): + releasever="32"): """ Generate an appliance description file @@ -148,7 +148,7 @@ def make_appliance(disk_img, name, template, outfile, networks=None, ram=1024, :param str arch: CPU architecture. Default is 'x86_64' :param str title: Title, passed to template. Default is 'Linux' :param str project: Project, passed to template. Default is 'Linux' - :param str releasever: Release version, passed to template. Default is 29 + :param str releasever: Release version, passed to template. Default is 32 """ if not (disk_img and template and outfile): return None diff --git a/src/pylorax/dnfbase.py b/src/pylorax/dnfbase.py index 6f383489..7df55662 100644 --- a/src/pylorax/dnfbase.py +++ b/src/pylorax/dnfbase.py @@ -25,7 +25,7 @@ from pylorax.sysutils import flatconfig def get_dnf_base_object(installroot, sources, mirrorlists=None, repos=None, enablerepos=None, disablerepos=None, - tempdir="/var/tmp", proxy=None, releasever="29", + tempdir="/var/tmp", proxy=None, releasever="32", cachedir=None, logdir=None, sslverify=True, dnfplugins=None): """ Create a dnf Base object and setup the repositories and installroot