mirror of
https://github.com/JasonN3/build-container-installer.git
synced 2025-12-25 10:57:55 +01:00
* feat: Allow users to override secure boot key and password when using container or action * fix: follow redirects * chore: update docs * fix: added comments and removed additional \n * fix: removed defaults * fix: added conditional for adding public key * chore(ci): Added additional test for secure boot * chore(ci): fixed up workflows to match production * fix(ci): added workflow dispatch to test * fix(ci): fixed version and added IMAGE_TAG * chore(ci): changed to bluefin to test both 38 and 39 secure boot * chore(ci): added required variables to entrypoint * chore(ci): added merge_group and added paths-ignore * chore(ci): updated description * chore(ci): set to Silverblue since we are testing Bluefin * chore(ci): Fixed secure boot key not found error Received error in anaconda when check was hit, need to set as a soft failure to exit the script early without stopping anaconda installation. * chore: fixed formatting * chore: fixed whitespace * chore(ci): Removed duplicate test * chore: fix whitespace * chore(ci): fixed test and removed upload to Github Artifacts * chore: updated README * fix: set password to ublue default * fix: changed enrollment password in containerfile
17 lines
452 B
Bash
Executable file
17 lines
452 B
Bash
Executable file
#!/bin/bash
|
|
|
|
set -eu
|
|
|
|
# pre-create loop devices manually. In containers we can't use losetup for that.
|
|
mknod -m 0660 /dev/loop0 b 7 0 2>/dev/null || true
|
|
|
|
make output/${IMAGE_NAME}-${IMAGE_TAG}.iso \
|
|
ARCH=${ARCH} \
|
|
VERSION=${VERSION} \
|
|
IMAGE_REPO=${IMAGE_REPO} \
|
|
IMAGE_NAME=${IMAGE_NAME} \
|
|
IMAGE_TAG=${IMAGE_TAG} \
|
|
VARIANT=${VARIANT} \
|
|
WEB_UI=${WEB_UI} \
|
|
SECURE_BOOT_KEY_URL=${SECURE_BOOT_KEY_URL} \
|
|
ENROLLMENT_PASSWORD=${ENROLLMENT_PASSWORD}
|