2020-10-24 23:30:27 +07:00
|
|
|
#!/bin/bash -e
|
2020-04-02 18:14:11 +05:00
|
|
|
################################################################################
|
|
|
|
|
## File: install-helpers.sh
|
|
|
|
|
## Desc: Helper functions for installing tools
|
|
|
|
|
################################################################################
|
|
|
|
|
|
2020-05-26 18:45:48 +03:00
|
|
|
function isUbuntu20
|
|
|
|
|
{
|
|
|
|
|
lsb_release -d | grep -q 'Ubuntu 20'
|
2020-04-02 18:14:11 +05:00
|
|
|
}
|
|
|
|
|
|
2022-05-02 10:46:10 +02:00
|
|
|
function isUbuntu22
|
|
|
|
|
{
|
|
|
|
|
lsb_release -d | grep -q 'Ubuntu 22'
|
|
|
|
|
}
|
|
|
|
|
|
2020-04-02 18:14:11 +05:00
|
|
|
function getOSVersionLabel
|
|
|
|
|
{
|
2020-05-26 18:45:48 +03:00
|
|
|
lsb_release -cs
|
2020-04-02 18:14:11 +05:00
|
|
|
}
|