blob: 5decb006ec227ff2736d2368258ac8aa83a88f7c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#!/bin/sh
# config
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"
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
sudo chown kraxel.kraxel "$disk"
done
|