Bump default platform and releasever to 32
This commit is contained in:
parent
53fba4c2b1
commit
009c051003
src/pylorax
@ -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")
|
||||
|
@ -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,
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user