Noble PiAware install fix.

pull/607/head
jprochazka 2024-08-23 15:51:56 +00:00
rodzic aa94ca1bfc
commit 8ee8e33cad
2 zmienionych plików z 6 dodań i 1 usunięć

Wyświetl plik

@ -10,6 +10,7 @@ The following is a history of the changes made to this project.
* The ability to install Graphs1090 is now available as an extras option.
* The ability to install tar1090 is now available as an extras option.
* All decoder menus have been modified to support additional options in the future.
* Added missing dependency to PiAware install script.
* Cleanup and consolidation performed on the PHP ADS-B Portal installation scripts.
* Merged the dump1090-tools copyright notice into the file dump1090.py.

Wyświetl plik

@ -76,6 +76,7 @@ check_package tclx8.4
check_package zlib1g-dev
if [[ "${RECEIVER_OS_CODE_NAME}" == "noble" ]]; then
check_package python3-filelock
check_package python3-pyasyncore
fi
@ -211,9 +212,12 @@ case $RECEIVER_OS_CODE_NAME in
bullseye | jammy)
distro="bullseye"
;;
bookworm | noble)
bookworm | Focal)
distro="bookworm"
;;
noble)
distro="trixie"
;;
esac
log_message "Setting distribution to build for to ${distro}"