diff --git a/CHANGELOG b/CHANGELOG index 96618e0..860b170 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -3,6 +3,7 @@ ====================== Version Description +1.1.10......Add Debian 11(Bullseye) to the WebGUI. 1.1.09......Always check/update create.sh for /tmp sane permissions. 1.1.08......Always check for host /tmp sane permissions. 1.1.07......Add Linux jails basic management to the WebGUI. diff --git a/gui/bastille_manager_tarballs.php b/gui/bastille_manager_tarballs.php index b0b16f6..bdefe98 100644 --- a/gui/bastille_manager_tarballs.php +++ b/gui/bastille_manager_tarballs.php @@ -83,6 +83,7 @@ if ($linux_compat_support == "YES"): 'ubuntu-focal' => gettext('Ubuntu-Focal'), 'debian-stretch' => gettext('Debian-Stretch'), 'debian-buster' => gettext('Debian-Buster'), + 'debian-bullseye' => gettext('Debian-Bullseye'), ]; else: $a_action = [ @@ -168,6 +169,8 @@ if($_POST): $get_release = "Debian9"; elseif($get_release == 'debian-buster'): $get_release = "Debian10"; + elseif($get_release == 'debian-bullseye'): + $get_release = "Debian11"; endif; $check_release = ("{$rootfolder}/releases/{$get_release}"); @@ -276,7 +279,7 @@ $document->render();