rocky-linux-generic-images/create-image.sh

28 lines
665 B
Bash
Raw Normal View History

2023-07-27 14:23:23 +00:00
#!/usr/bin/env bash
REAL_USER=$(who am i | awk '{print $1}')
APPLIANCE_NAME="Rocky-9-aarch64-minimal"
KICKSTARTER_FILENAME="${APPLIANCE_NAME}.ks"
if [[ ${EUID} -ne 0 ]]; then
>&2 echo "ERROR: Please run this script as root"
exit 1
fi
appliance-creator \
--config "${KICKSTARTER_FILENAME}" \
--name "${APPLIANCE_NAME}" \
--format raw \
--checksum \
--no-compress \
--outdir "${PWD}" \
2023-07-27 14:33:48 +00:00
--cache "/root/cache" \
2023-07-27 14:23:23 +00:00
--debug \
--verbose \
1> Rocky-9-aarch64-minimal.stdout.log \
2> Rocky-9-aarch64-minimal.stderr.log
2023-07-27 15:11:45 +00:00
if [[ -f "${APPLIANCE_NAME}*" ]]; then
chown "${REAL_USER}:${REAL_USER}" "${APPLIANCE_NAME}*"
fi