mirror of
https://github.com/actions/runner-images.git
synced 2025-12-11 03:27:05 +00:00
17 lines
417 B
Bash
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'
|
|
} |