File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -333,21 +333,27 @@ is_raspios() {
333333}
334334# Represents the current OS versions we officially support
335335is_supported () {
336- if is_bullseye || is_bookworm || is_jellyfish || is_noble; then return 0; fi
336+ if is_bullseye || is_bookworm || is_trixie || is_jellyfish || is_noble; then return 0; fi
337337 return 1;
338338}
339- # Debian/Raspbian oldstable
339+ # Debian/Raspbian oldoldstable
340340is_bullseye () {
341341 if [[ " $osrelease " == " bullseye" ]]; then return 0; fi
342342 [[ $( cat /etc/* release* ) =~ " bullseye" ]]
343343 return $?
344344}
345- # Debian/Raspbian stable
345+ # Debian/Raspbian oldstable
346346is_bookworm () {
347347 if [[ " $osrelease " == " bookworm" ]]; then return 0; fi
348348 [[ $( cat /etc/* release* ) =~ " bookworm" ]]
349349 return $?
350350}
351+ # Debian/Raspbian stable
352+ is_trixie () {
353+ if [[ " $osrelease " == " trixie" ]]; then return 0; fi
354+ [[ $( cat /etc/* release* ) =~ " trixie" ]]
355+ return $?
356+ }
351357# Debian/Raspbian unstable
352358is_sid () {
353359 if [[ " $osrelease " == " sid" ]]; then return 0; fi
You can’t perform that action at this time.
0 commit comments