diff --git a/CHANGELOG.md b/CHANGELOG.md index 65ac070..be36b6d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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. diff --git a/bash/feeders/piaware.sh b/bash/feeders/piaware.sh index 4c16acc..4fe9b9d 100755 --- a/bash/feeders/piaware.sh +++ b/bash/feeders/piaware.sh @@ -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}"