diff --git a/install/dist/conf/ubuntu2004.conf.php b/install/dist/conf/ubuntu2004.conf.php index 2cde7e3200f0366aabe5fffd1d0f453dac7a8e94..a55c9a004be57ee4ca99f61ce8a6025ae64736bf 100644 --- a/install/dist/conf/ubuntu2004.conf.php +++ b/install/dist/conf/ubuntu2004.conf.php @@ -28,7 +28,7 @@ NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ -//*** Ubuntu 18.04 default settings +//*** Ubuntu 20.04 default settings //* Main $conf['language'] = 'en'; diff --git a/install/dist/conf/ubuntu2204.conf.php b/install/dist/conf/ubuntu2204.conf.php new file mode 100644 index 0000000000000000000000000000000000000000..050f58f69d479acffc8dd72b038946de4fa929af --- /dev/null +++ b/install/dist/conf/ubuntu2204.conf.php @@ -0,0 +1,240 @@ + \ No newline at end of file diff --git a/install/lib/install.lib.php b/install/lib/install.lib.php index 7866715b47f63c1023de724ab89e787522539fb9..10de1d8fbf585ca698a782dc834e02c035a6444f 100644 --- a/install/lib/install.lib.php +++ b/install/lib/install.lib.php @@ -98,6 +98,10 @@ function get_distname() { $mainver = current($mainver).'.'.next($mainver); } switch ($mainver){ + case "22.04": + $relname = "(Jammy Jellyfish)"; + $distconfid = 'ubuntu2204'; + break; case "20.04": $relname = "(Focal Fossa)"; $distconfid = 'ubuntu2004'; diff --git a/server/lib/classes/monitor_tools.inc.php b/server/lib/classes/monitor_tools.inc.php index 3d540ac8c863097148121db6791463b910b9fdbd..fa1ea26babb92ef6bb6745959115516eaa3f8fd4 100644 --- a/server/lib/classes/monitor_tools.inc.php +++ b/server/lib/classes/monitor_tools.inc.php @@ -87,6 +87,10 @@ class monitor_tools { $mainver = $ver; } switch ($mainver){ + case "22.04": + $relname = "(Jammy Jellyfish)"; + $distconfid = 'ubuntu2204'; + break; case "20.04": $relname = "(Focal Fossa)"; $distconfid = 'ubuntu2004';