aboutsummaryrefslogtreecommitdiffstats
path: root/kickstart
diff options
context:
space:
mode:
authorGerd Hoffmann <kraxel@redhat.com>2022-07-10 19:50:39 +0200
committerGerd Hoffmann <kraxel@redhat.com>2022-07-10 19:50:39 +0200
commitbbb077ac84a86f527aee7f67452c8f3f884debaa (patch)
tree1e3e054e95c4621eea0db3ae81ea317211d09285 /kickstart
parent49cfe796ba2489fa5639d9d06ea15db81fd265ed (diff)
downloadimagefish-bbb077ac84a86f527aee7f67452c8f3f884debaa.tar.gz
rhel update
Diffstat (limited to 'kickstart')
-rwxr-xr-xkickstart/rhel8.sh7
-rwxr-xr-xkickstart/rhel9.sh12
2 files changed, 10 insertions, 9 deletions
diff --git a/kickstart/rhel8.sh b/kickstart/rhel8.sh
index 5b8dbd9..ea8b792 100755
--- a/kickstart/rhel8.sh
+++ b/kickstart/rhel8.sh
@@ -4,15 +4,12 @@
name="rhel"
dest="/vmdisk/hdd/imagefish"
-#base="http://spunk.home.kraxel.org/mirror/rhel/redhat/rhel-8/rel-eng/RHEL-8"
-#vers="8.3.0 8.2.0"
-
base="http://sirius.home.kraxel.org/rhel-8/rel-eng/RHEL-8"
-vers="8.5.0 8.4.0"
+vers="8.6.0 8.5.0 8.4.0"
for v in $vers; do
- disk="${dest}/${name}-${v}-ks-x86_64.qcow2"
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" el8.ks
sudo chown kraxel.kraxel "$disk"
done
diff --git a/kickstart/rhel9.sh b/kickstart/rhel9.sh
index 5decb00..4008d62 100755
--- a/kickstart/rhel9.sh
+++ b/kickstart/rhel9.sh
@@ -4,13 +4,17 @@
name="rhel"
dest="/vmdisk/hdd/imagefish"
-#base="http://sirius.home.kraxel.org/rhel-9/rel-eng/RHEL-9"
-base="http://sirius.home.kraxel.org/rhel-9/nightly/RHEL-9-Beta"
+base="http://sirius.home.kraxel.org/rhel-9/rel-eng/RHEL-9"
vers="9.0.0"
for v in $vers; do
- disk="${dest}/${name}-${v}-ks-x86_64.qcow2"
repo="${base}/latest-RHEL-${v}/compose/BaseOS/x86_64/os/"
- ../scripts/run-kickstart-install.sh "$disk" "$repo" fedora.ks
+
+ 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"
done