mirror of
https://github.com/actions/runner-images.git
synced 2025-12-11 03:27:05 +00:00
* [ubuntu] Rename build scripts * [ubuntu] Change reboot to inline shell * [ubuntu] Move disk space validation to pester tests * [ubuntu] Rename helper and tests files * [ubuntu] Changes to cleanup, post-deployment and r scripts
21 lines
422 B
Bash
21 lines
422 B
Bash
#!/bin/bash -e
|
|
################################################################################
|
|
## File: os.sh
|
|
## Desc: Helper functions for OS releases
|
|
################################################################################
|
|
|
|
function isUbuntu20
|
|
{
|
|
lsb_release -d | grep -q 'Ubuntu 20'
|
|
}
|
|
|
|
function isUbuntu22
|
|
{
|
|
lsb_release -d | grep -q 'Ubuntu 22'
|
|
}
|
|
|
|
function getOSVersionLabel
|
|
{
|
|
lsb_release -cs
|
|
}
|