From ac71bf2f914c2f892dba7d46e96a69ce85a448b3 Mon Sep 17 00:00:00 2001 From: Alan Johnston Date: Sat, 16 Aug 2025 18:40:13 -0400 Subject: [PATCH] Update install added check for Bullseye --- install | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/install b/install index 3de142d4..b026c78e 100755 --- a/install +++ b/install @@ -2,6 +2,17 @@ echo -e "\ninstallation script for CubeSatSim v2.2\n" +cat | grep "11." + + if [[ $(grep '11.' /etc/debian_version) ]]; then + echo "Installing on Debian 11 (Bullseye)" + else + echo "This is not Debian 11 (Bullseye)!" + echo "Installation is not likely to work." + echo "Recommend you start with a Bullseye." + sleep 10 + fi + FILE=/home/pi/CubeSatSim/sim.cfg if [ -f "$FILE" ]; then echo "$FILE exists."