Files
runner-images/images/ubuntu/scripts/helpers/os.sh
T

14 lines
358 B
Bash
Raw Normal View History

2020-10-24 23:30:27 +07:00
#!/bin/bash -e
2020-04-02 18:14:11 +05:00
################################################################################
2023-11-22 21:49:23 +01:00
## File: os.sh
## Desc: Helper functions for OS releases
2020-04-02 18:14:11 +05:00
################################################################################
2023-12-26 12:50:52 +01:00
is_ubuntu20() {
+15
2020-05-26 18:45:48 +03:00
lsb_release -d | grep -q 'Ubuntu 20'
2020-04-02 18:14:11 +05:00
}
2023-12-26 12:50:52 +01:00
is_ubuntu22() {
lsb_release -d | grep -q 'Ubuntu 22'
}