Skip to content

Commit

Permalink
check glibc version must less 2.34 (#470)
Browse files Browse the repository at this point in the history
  • Loading branch information
wayyoungboy authored Oct 9, 2024
1 parent 15571e8 commit 78216b2
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions handler/checker/tasks/observer/bugs/bug_469.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
info: "the ldd version of observer's node must less 2.34. more information: obdiag github issue #469"
task:
- version: "[4.0.0.0,*]"
steps:
- type: ssh
ssh: "ldd --version | head -n 1 | awk '{print $NF}' | cut -d. -f1'"
result:
set_value: ldd_version
verify_type: max
verify: 3
err_msg: "ldd version must more than 2.34"
- type: ssh
ssh: "ldd --version | head -n 1 | awk '{print $NF}' | cut -d. -f2'"
result:
set_value: ldd_version
verify_type: max
verify: 34
err_msg: "ldd version must less 2.34"


0 comments on commit 78216b2

Please sign in to comment.