2021-05-03 22:39:00 +00:00
|
|
|
#!/bin/bash
|
|
|
|
set -eux
|
2021-06-25 19:47:38 +00:00
|
|
|
|
|
|
|
FAILANY=0
|
|
|
|
BOOTISO=/var/tmp/lorax-fedora-iso/images/boot.iso
|
|
|
|
KSNAME=fedora-minimal.ks
|
|
|
|
KS="/usr/share/doc/lorax/$KSNAME"
|
|
|
|
OUTISO=/var/tmp/out.iso
|
|
|
|
ISODIR=/var/tmp/iso
|
|
|
|
## Functions for testing mkkiso
|
|
|
|
|
|
|
|
|
|
|
|
function fail {
|
|
|
|
echo -e "\n\n#### ERROR: $1\n"
|
|
|
|
FAIL=1
|
|
|
|
FAILANY=1
|
|
|
|
}
|
|
|
|
|
|
|
|
function status {
|
|
|
|
if [ "$FAIL" -eq 0 ]; then
|
|
|
|
echo -e "\n\n#### PASS: $1\n"
|
|
|
|
else
|
|
|
|
echo -e "\n\n#### FAIL: $1\n"
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
|
|
|
function running {
|
|
|
|
FAIL=0
|
|
|
|
echo -e "\n\n#### RUN: $1\n"
|
|
|
|
}
|
|
|
|
|
2021-11-11 18:18:50 +00:00
|
|
|
# unmount the dirs lazily because sometimes some outside thing is still touching them
|
|
|
|
function umount_dirs {
|
|
|
|
umount --lazy "$ISODIR"
|
2022-05-11 19:08:00 +00:00
|
|
|
rm -f "$OUTISO"
|
2021-11-11 18:18:50 +00:00
|
|
|
}
|
|
|
|
|
2021-06-25 19:47:38 +00:00
|
|
|
[ -e "$ISODIR" ] || mkdir "$ISODIR"
|
|
|
|
|
|
|
|
# Only add kickstart
|
|
|
|
function ks_only {
|
|
|
|
running "Add kickstart to iso"
|
|
|
|
|
2022-05-26 21:51:22 +00:00
|
|
|
mkksiso --ks $KS $BOOTISO $OUTISO || exit 1
|
2021-06-25 19:47:38 +00:00
|
|
|
mount $OUTISO $ISODIR || exit 1
|
|
|
|
|
|
|
|
test_ks
|
|
|
|
|
|
|
|
status "Add kickstart"
|
2021-11-11 18:18:50 +00:00
|
|
|
umount_dirs
|
2021-06-25 19:47:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
function test_ks {
|
|
|
|
## This all needs to be another function
|
|
|
|
# Is there a kickstart in / of the iso?
|
|
|
|
[ -e "$ISODIR/$KSNAME" ] || fail "Missing kickstart"
|
|
|
|
|
2022-06-01 23:20:10 +00:00
|
|
|
# Is the kickstart in the GRUB2 BIOS config?
|
|
|
|
grep "inst.ks=.*$KSNAME" "$ISODIR/boot/grub2/grub.cfg" || fail "Missing BIOS grub.cfg kickstart entry"
|
2021-06-25 19:47:38 +00:00
|
|
|
|
|
|
|
# Is the kickstart in the UEFI config?
|
2022-05-11 19:08:00 +00:00
|
|
|
grep "inst.ks=.*$KSNAME" "$ISODIR/EFI/BOOT/grub.cfg" || fail "Missing UEFI grub.cfg kickstart entry"
|
2021-06-25 19:47:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
# Add ks and cmdline
|
|
|
|
function ks_serial {
|
|
|
|
running "Add kickstart and serial cmdline"
|
|
|
|
|
2022-05-26 21:51:22 +00:00
|
|
|
mkksiso -c "console=ttyS0,115200n8" --ks $KS $BOOTISO $OUTISO || exit 1
|
2021-06-25 19:47:38 +00:00
|
|
|
mount $OUTISO $ISODIR || exit 1
|
|
|
|
|
|
|
|
test_ks
|
2022-05-26 21:51:22 +00:00
|
|
|
test_serial
|
2021-06-25 19:47:38 +00:00
|
|
|
|
|
|
|
status "Add kickstart and serial cmdline"
|
2021-11-11 18:18:50 +00:00
|
|
|
umount_dirs
|
2021-06-25 19:47:38 +00:00
|
|
|
}
|
|
|
|
|
2022-05-26 21:51:22 +00:00
|
|
|
# Only add serial console to cmdline
|
|
|
|
function only_serial {
|
|
|
|
running "Add serial cmdline (no ks)"
|
|
|
|
|
|
|
|
mkksiso -c "console=ttyS0,115200n8" $BOOTISO $OUTISO || exit 1
|
|
|
|
mount $OUTISO $ISODIR || exit 1
|
|
|
|
|
|
|
|
test_serial
|
|
|
|
|
|
|
|
status "Add kickstart and serial cmdline"
|
|
|
|
umount_dirs
|
|
|
|
}
|
|
|
|
|
|
|
|
function test_serial {
|
2021-06-25 19:47:38 +00:00
|
|
|
|
|
|
|
# Is the serial in the BIOS config?
|
2022-06-01 23:20:10 +00:00
|
|
|
grep "console=ttyS0,115200n8" "$ISODIR/boot/grub2/grub.cfg" || fail "Missing BIOS grub.cfg cmdline entry"
|
2021-06-25 19:47:38 +00:00
|
|
|
|
|
|
|
# Is the serial in the UEFI config?
|
2022-05-11 19:08:00 +00:00
|
|
|
grep "console=ttyS0,115200n8" "$ISODIR/EFI/BOOT/grub.cfg" || fail "Missing UEFI grub.cfg cmdline entry"
|
2021-06-25 19:47:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
# New VOLID
|
|
|
|
function new_volid {
|
|
|
|
running "Use a new VOLID"
|
|
|
|
|
2022-05-26 21:51:22 +00:00
|
|
|
mkksiso -V "mkksiso-test" --ks $KS $BOOTISO $OUTISO || exit 1
|
2021-06-25 19:47:38 +00:00
|
|
|
mount $OUTISO $ISODIR || exit 1
|
|
|
|
|
|
|
|
test_ks
|
|
|
|
test_volid
|
|
|
|
|
|
|
|
status "Use a new VOLID"
|
2021-11-11 18:18:50 +00:00
|
|
|
umount_dirs
|
2021-06-25 19:47:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
function test_volid {
|
|
|
|
# Is the VOLID in the BIOS config?
|
2022-06-01 23:20:10 +00:00
|
|
|
grep "hd:LABEL=mkksiso-test" "$ISODIR/boot/grub2/grub.cfg" || fail "Missing BIOS grub.cfg kickstart entry"
|
2021-06-25 19:47:38 +00:00
|
|
|
|
|
|
|
# Is the VOLID in the UEFI config?
|
2022-05-11 19:08:00 +00:00
|
|
|
grep "hd:LABEL=mkksiso-test" "$ISODIR/EFI/BOOT/grub.cfg" || fail "Missing UEFI grub.cfg kickstart entry"
|
2021-06-25 19:47:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
# Add extra files
|
|
|
|
function add_files {
|
|
|
|
running "Add files"
|
|
|
|
|
2022-05-26 21:51:22 +00:00
|
|
|
mkksiso -a /etc/services --ks $KS $BOOTISO $OUTISO || exit 1
|
2021-06-25 19:47:38 +00:00
|
|
|
mount $OUTISO $ISODIR || exit 1
|
|
|
|
|
|
|
|
test_ks
|
|
|
|
test_files
|
|
|
|
|
|
|
|
status "Add files"
|
2021-11-11 18:18:50 +00:00
|
|
|
umount_dirs
|
2021-06-25 19:47:38 +00:00
|
|
|
}
|
|
|
|
|
2022-05-26 21:51:22 +00:00
|
|
|
# Remove quiet from the cmdline
|
|
|
|
function remove_quiet {
|
|
|
|
running "remove quiet from cmdline (no ks)"
|
|
|
|
|
|
|
|
mkksiso --rm "quiet" $BOOTISO $OUTISO || exit 1
|
|
|
|
mount $OUTISO $ISODIR || exit 1
|
|
|
|
|
|
|
|
test_quiet
|
|
|
|
|
|
|
|
status "Remove quiet from cmdline"
|
|
|
|
umount_dirs
|
|
|
|
}
|
|
|
|
|
|
|
|
function test_quiet {
|
|
|
|
# Is quiet in the BIOS config?
|
|
|
|
! grep "append.*quiet" "$ISODIR/boot/grub2/grub.cfg" || fail "quiet not removed from BIOS grub.cfg cmdline entry"
|
|
|
|
|
|
|
|
# Is quiet in the UEFI config?
|
|
|
|
! grep "linux.*quiet" "$ISODIR/EFI/BOOT/grub.cfg" || fail "quiet not removed from UEFI grub.cfg cmdline entry"
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2021-06-25 19:47:38 +00:00
|
|
|
function test_files {
|
|
|
|
[ -e "$ISODIR/services" ] || fail "Missing file from iso"
|
|
|
|
}
|
|
|
|
|
|
|
|
# All of the changes
|
|
|
|
function run_all {
|
|
|
|
running "Use all the options"
|
|
|
|
|
2022-05-26 21:51:22 +00:00
|
|
|
mkksiso -a /etc/services -V "mkksiso-test" -c "console=ttyS0,115200n8" --rm "quiet" --ks $KS $BOOTISO $OUTISO || exit 1
|
2021-06-25 19:47:38 +00:00
|
|
|
mount $OUTISO $ISODIR || exit 1
|
|
|
|
|
|
|
|
test_ks
|
2022-05-26 21:51:22 +00:00
|
|
|
test_serial
|
2021-06-25 19:47:38 +00:00
|
|
|
test_volid
|
|
|
|
test_files
|
2022-05-26 21:51:22 +00:00
|
|
|
test_quiet
|
2021-06-25 19:47:38 +00:00
|
|
|
|
|
|
|
status "Use all the options"
|
2021-11-11 18:18:50 +00:00
|
|
|
umount_dirs
|
2021-06-25 19:47:38 +00:00
|
|
|
}
|
|
|
|
|
2022-07-13 22:23:16 +00:00
|
|
|
# All of the changes as a user (lorax-ted)
|
|
|
|
function run_as_user {
|
|
|
|
running "Use all the options as a user"
|
|
|
|
|
|
|
|
[ ! -e "/home/lorax-ted" ] && useradd -m lorax-ted
|
|
|
|
su - lorax-ted -c "mkksiso -a /etc/services -V "mkksiso-test" -c "console=ttyS0,115200n8" --rm "quiet" --ks $KS $BOOTISO $OUTISO" || exit 1
|
|
|
|
mount $OUTISO $ISODIR || exit 1
|
|
|
|
|
|
|
|
test_ks
|
|
|
|
test_serial
|
|
|
|
test_volid
|
|
|
|
test_files
|
|
|
|
test_quiet
|
|
|
|
|
|
|
|
status "Use all the options as a user"
|
|
|
|
umount_dirs
|
|
|
|
}
|
|
|
|
|
2021-06-25 19:47:38 +00:00
|
|
|
|
|
|
|
|
2021-05-03 22:39:00 +00:00
|
|
|
# Gather up the list of system repo files and use them for lorax
|
|
|
|
REPOS=$(for f in /etc/yum.repos.d/*repo; do echo -n "--repo $f "; done)
|
|
|
|
if [ -z "$REPOS" ]; then
|
|
|
|
echo "No system repos found"
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
# NOTE: We must use --nomacboot because the test system doesn't have the hfsplus fs available
|
|
|
|
# Run lorax using the host's repository configuration file
|
2022-05-11 19:08:00 +00:00
|
|
|
if [ ! -e "$BOOTISO" ]; then
|
|
|
|
running "Build boot.iso with lorax"
|
|
|
|
lorax --product="Fedora" --version=rawhide --release=rawhide --volid="Fedora-rawhide-test" \
|
|
|
|
$REPOS --isfinal --nomacboot /var/tmp/lorax-fedora-iso/ || exit 1
|
|
|
|
fi
|
2021-06-25 19:47:38 +00:00
|
|
|
|
|
|
|
# Test mkksiso on the new boot.iso
|
|
|
|
ks_only
|
|
|
|
ks_serial
|
2022-05-26 21:51:22 +00:00
|
|
|
only_serial
|
2021-06-25 19:47:38 +00:00
|
|
|
new_volid
|
|
|
|
add_files
|
2022-05-26 21:51:22 +00:00
|
|
|
remove_quiet
|
2021-06-25 19:47:38 +00:00
|
|
|
run_all
|
2022-07-13 22:23:16 +00:00
|
|
|
run_as_user
|
2021-06-25 19:47:38 +00:00
|
|
|
|
|
|
|
exit $FAILANY
|