Files
runner-images/images/ubuntu/scripts/helpers/os.sh
2024-04-15 18:01:52 +02:00

17 lines
417 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'
}
is_ubuntu24() {
lsb_release -d | grep -q 'Ubuntu 24'
}