Files
runner-images-sangeeth/images/ubuntu/scripts/helpers/os.sh
2023-11-15 11:36:04 +01:00

20 lines
439 B
Bash

#!/bin/bash -e
################################################################################
## File: install-helpers.sh
## Desc: Helper functions for installing tools
################################################################################
function isUbuntu20
{
lsb_release -d | grep -q 'Ubuntu 20'
}
function isUbuntu22
{
lsb_release -d | grep -q 'Ubuntu 22'
}
function getOSVersionLabel
{
lsb_release -cs
}