aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGerd Hoffmann <kraxel@redhat.com>2022-07-10 19:58:15 +0200
committerGerd Hoffmann <kraxel@redhat.com>2022-07-10 19:58:15 +0200
commit6ca24242822a37efb5ed2573f484d6b8cad5a023 (patch)
treefaa0c58e71186d658afdc14c991efd2bf20a8ce5
parent62b7ef2202158bc88d2a4e44a7316e4586796fc5 (diff)
downloadimagefish-6ca24242822a37efb5ed2573f484d6b8cad5a023.tar.gz
reorder el9 cfgs
-rwxr-xr-xkickstart/rhel9.sh8
1 files changed, 4 insertions, 4 deletions
diff --git a/kickstart/rhel9.sh b/kickstart/rhel9.sh
index 4008d62..890574d 100755
--- a/kickstart/rhel9.sh
+++ b/kickstart/rhel9.sh
@@ -10,11 +10,11 @@ vers="9.0.0"
for v in $vers; do
repo="${base}/latest-RHEL-${v}/compose/BaseOS/x86_64/os/"
- disk="${dest}/${name}-${v}-ks-x86_64.qcow2"
- ../scripts/run-kickstart-install.sh "$disk" "$repo" el9.ks
- sudo chown kraxel.kraxel "$disk"
-
disk="${dest}/${name}-efi-${v}-ks-x86_64.qcow2"
../scripts/run-kickstart-install.sh "$disk" "$repo" el9-efi.ks
sudo chown kraxel.kraxel "$disk"
+
+ disk="${dest}/${name}-${v}-ks-x86_64.qcow2"
+ ../scripts/run-kickstart-install.sh "$disk" "$repo" el9.ks
+ sudo chown kraxel.kraxel "$disk"
done