diff --git a/anaconda_updates/releases/__init__.py b/anaconda_updates/releases/__init__.py index 1f251d7..b6f0985 100644 --- a/anaconda_updates/releases/__init__.py +++ b/anaconda_updates/releases/__init__.py @@ -1,7 +1,7 @@ __all__ = ["Branch", "GeneralBranch", "master", "f22", "f23", "f24", "f25", "f26", "f27", "f28", "f29", "rhel6", "rhel6_8", - "rhel7", "rhel7_1", "rhel7_2", "rhel7_3", "rhel7_4"] + "rhel7", "rhel7_1", "rhel7_2", "rhel7_3", "rhel7_4", "rhel7_5"] import subprocess import os @@ -31,6 +31,7 @@ class Branch(Enum): rhel7_2 = 22, rhel7_3 = 23, rhel7_4 = 24, + rhel7_5 = 25, class GeneralBranch(object): diff --git a/anaconda_updates/releases/rhel7_5.py b/anaconda_updates/releases/rhel7_5.py new file mode 100644 index 0000000..26fab99 --- /dev/null +++ b/anaconda_updates/releases/rhel7_5.py @@ -0,0 +1,17 @@ + +from . import GeneralBranch, Branch +from anaconda_updates.settings import GlobalSettings + + +class Rhel7_5Branch(GeneralBranch): + + def __init__(self): + super().__init__(branch_type=Branch.rhel7_5, + cmd_args=["-rh7.5", "--rhel7.5"], + help="working on RHEL 7.5", + version="21.48.22.134", + img_name="rhel7.5_updates.img", + blivet_args=[], pykickstart_args=[]) + + GlobalSettings.use_blivet = False + GlobalSettings.use_pykickstart = False