Files
runner-images/images/linux/scripts/helpers/os.sh
Mikhail Timofeev 8bdf4867d5 fix lsb release
2020-04-28 19:15:30 +03:00

20 lines
450 B
Bash

#!/bin/bash
################################################################################
## File: install-helpers.sh
## Desc: Helper functions for installing tools
################################################################################
function isUbuntu16
{
lsb_release -d|grep 'Ubuntu 16' > /dev/null
}
function isUbuntu18
{
lsb_release -d|grep 'Ubuntu 18' > /dev/null
}
function getOSVersionLabel
{
lsb_release -cs
}