diff options
author | A. Wilcox <AWilcox@Wilcox-Tech.com> | 2023-10-21 01:19:30 -0500 |
---|---|---|
committer | A. Wilcox <AWilcox@Wilcox-Tech.com> | 2023-10-21 01:19:30 -0500 |
commit | 3575260e68030a6dec02aa933d1294416e725a49 (patch) | |
tree | 967424569cbf426912ee43223f85abf36b15b4e5 | |
parent | c8d848cc58423b77df88e518e5bd5488cd59aa70 (diff) | |
download | horizon-3575260e68030a6dec02aa933d1294416e725a49.tar.gz horizon-3575260e68030a6dec02aa933d1294416e725a49.tar.bz2 horizon-3575260e68030a6dec02aa933d1294416e725a49.tar.xz horizon-3575260e68030a6dec02aa933d1294416e725a49.zip |
Qt UI: Use proper URL for firmware keys as well
Fixes: 3786744d94 ("Qt UI: Update signing keys")
-rw-r--r-- | CHANGELOG.rst | 2 | ||||
-rw-r--r-- | ui/qt5/horizonwizard.cc | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/CHANGELOG.rst b/CHANGELOG.rst index e5d4deb..d6ebfc8 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -36,7 +36,7 @@ Disk ---- * The ``diskid`` key now additionally probes the ``ID_MODEL_ENC`` udev property - of the block device, to allow for matching on human-reddable model names. + of the block device, to allow for matching on human-readable model names. HorizonScript Library diff --git a/ui/qt5/horizonwizard.cc b/ui/qt5/horizonwizard.cc index 264ecc8..0dfd43e 100644 --- a/ui/qt5/horizonwizard.cc +++ b/ui/qt5/horizonwizard.cc @@ -722,8 +722,8 @@ QString HorizonWizard::toHScript() { #ifdef NON_LIBRE_FIRMWARE if(this->firmware) { lines << "firmware true"; - lines << "signingkey /etc/apk/keys/packages@pleroma.apkfission.net-5ac0b300.rsa.pub"; - lines << "signingkey /etc/apk/keys/packages@pleroma.apkfission.net-5ac04808.rsa.pub"; + lines << "signingkey https://distfiles.adelielinux.org/adelie/keys/packages@pleroma.apkfission.net-5ac0b300.rsa.pub"; + lines << "signingkey https://distfiles.adelielinux.org/adelie/keys/packages@pleroma.apkfission.net-5ac04808.rsa.pub"; } else { lines << "firmware false"; } |