[Feature Request]: check/ck_os_version
: check if os version is not less than given value
#77
Labels
Milestone
check/ck_os_version
: check if os version is not less than given value
#77
Is there an existing issue for the feature request?
Feature Description
check/ck_os_version
: check if os version is not less than given valueFeature Implementation
Linux:
cat /etc/debian_version
cat /etc/centos-release | awk '{print $4}'
grep "^VERSION_ID=" /etc/os-release | awk -F "=" '{print $2}' | sed 's#"##g'
Mac: os_version=
sw_vers | grep "ProductVersion" | awk '{print $2}'
Additional information
No response
The text was updated successfully, but these errors were encountered: