mirror of
https://github.com/actions/runner-images.git
synced 2025-12-11 03:27:05 +00:00
18 lines
409 B
Bash
18 lines
409 B
Bash
#!/bin/bash -e
|
|
################################################################################
|
|
## File: os.sh
|
|
## Desc: Helper functions for OS releases
|
|
################################################################################
|
|
|
|
is_ubuntu20() {
|
|
lsb_release -rs | grep -q '20.04'
|
|
}
|
|
|
|
is_ubuntu22() {
|
|
lsb_release -rs | grep -q '22.04'
|
|
}
|
|
|
|
is_ubuntu24() {
|
|
lsb_release -rs | grep -q '24.04'
|
|
}
|