|
|
4d1b5d |
From 5df5658fba7d16f385078f1fa4afd748aef65150 Mon Sep 17 00:00:00 2001
|
|
|
cebaad |
From: Neal Gompa <ngompa@centosproject.org>
|
|
|
cebaad |
Date: Fri, 14 May 2021 15:03:05 -0400
|
|
|
4c654f |
Subject: [PATCH 20003/20007] Revert "Remove kickstart btrfs support"
|
|
|
cebaad |
|
|
|
cebaad |
Restore Btrfs support for Kickstart so system installations can
|
|
|
cebaad |
use Btrfs and images can be built using Lorax with Btrfs as the
|
|
|
cebaad |
filesystem.
|
|
|
cebaad |
|
|
|
cebaad |
This reverts commit a2e6b3749d4d9d04292afafca38efe72b1273ec7.
|
|
|
cebaad |
---
|
|
|
cebaad |
pyanaconda/core/kickstart/commands.py | 10 +++++-----
|
|
|
cebaad |
1 file changed, 5 insertions(+), 5 deletions(-)
|
|
|
cebaad |
|
|
|
cebaad |
diff --git a/pyanaconda/core/kickstart/commands.py b/pyanaconda/core/kickstart/commands.py
|
|
|
cebaad |
index c5e1b2938..4bb102c08 100644
|
|
|
cebaad |
--- a/pyanaconda/core/kickstart/commands.py
|
|
|
cebaad |
+++ b/pyanaconda/core/kickstart/commands.py
|
|
|
cebaad |
@@ -24,10 +24,10 @@
|
|
|
cebaad |
# Supported kickstart commands.
|
|
|
cebaad |
from pykickstart.commands.authconfig import F28_Authconfig as Authconfig
|
|
|
cebaad |
from pykickstart.commands.authselect import F28_Authselect as Authselect
|
|
|
cebaad |
-from pykickstart.commands.autopart import RHEL8_AutoPart as AutoPart
|
|
|
cebaad |
+from pykickstart.commands.autopart import F29_AutoPart as AutoPart
|
|
|
cebaad |
from pykickstart.commands.autostep import FC3_AutoStep as AutoStep
|
|
|
cebaad |
from pykickstart.commands.bootloader import RHEL8_Bootloader as Bootloader
|
|
|
cebaad |
-from pykickstart.commands.btrfs import RHEL8_BTRFS as BTRFS
|
|
|
cebaad |
+from pykickstart.commands.btrfs import F23_BTRFS as BTRFS
|
|
|
cebaad |
from pykickstart.commands.cdrom import FC3_Cdrom as Cdrom
|
|
|
cebaad |
from pykickstart.commands.clearpart import F28_ClearPart as ClearPart
|
|
|
cebaad |
from pykickstart.commands.displaymode import F26_DisplayMode as DisplayMode
|
|
|
cebaad |
@@ -51,7 +51,7 @@ from pykickstart.commands.keyboard import F18_Keyboard as Keyboard
|
|
|
cebaad |
from pykickstart.commands.lang import F19_Lang as Lang
|
|
|
cebaad |
from pykickstart.commands.liveimg import F19_Liveimg as Liveimg
|
|
|
cebaad |
from pykickstart.commands.logging import FC6_Logging as Logging
|
|
|
cebaad |
-from pykickstart.commands.logvol import RHEL8_LogVol as LogVol
|
|
|
cebaad |
+from pykickstart.commands.logvol import F29_LogVol as LogVol
|
|
|
cebaad |
from pykickstart.commands.mediacheck import FC4_MediaCheck as MediaCheck
|
|
|
cebaad |
from pykickstart.commands.method import F28_Method as Method
|
|
|
cebaad |
from pykickstart.commands.mount import F27_Mount as Mount
|
|
|
cebaad |
@@ -60,8 +60,8 @@ from pykickstart.commands.network import F27_Network as Network
|
|
|
cebaad |
from pykickstart.commands.nfs import FC6_NFS as NFS
|
|
|
cebaad |
from pykickstart.commands.nvdimm import F28_Nvdimm as Nvdimm
|
|
|
cebaad |
from pykickstart.commands.ostreesetup import RHEL8_OSTreeSetup as OSTreeSetup
|
|
|
cebaad |
-from pykickstart.commands.partition import RHEL8_Partition as Partition
|
|
|
cebaad |
-from pykickstart.commands.raid import RHEL8_Raid as Raid
|
|
|
cebaad |
+from pykickstart.commands.partition import F29_Partition as Partition
|
|
|
cebaad |
+from pykickstart.commands.raid import F29_Raid as Raid
|
|
|
cebaad |
from pykickstart.commands.realm import F19_Realm as Realm
|
|
|
cebaad |
from pykickstart.commands.reboot import F23_Reboot as Reboot
|
|
|
cebaad |
from pykickstart.commands.repo import RHEL8_Repo as Repo
|
|
|
cebaad |
--
|
|
|
4d1b5d |
2.32.0
|
|
|
cebaad |
|