Files
runner-images/images/ubuntu/scripts/helpers/os.sh
2023-12-26 12:50:52 +01:00

18 lines
406 B
Bash

#!/bin/bash -e
################################################################################
## File: os.sh
## Desc: Helper functions for OS releases
################################################################################
is_ubuntu20() {
lsb_release -d | grep -q 'Ubuntu 20'
}
is_ubuntu22() {
lsb_release -d | grep -q 'Ubuntu 22'
}
get_os_version_label() {
lsb_release -cs
}