Skip to content
Snippets Groups Projects
Select Git revision
  • 258af91c3a7b788b609c9e419e3387bcbac37076
  • master default protected
  • simple-task/7248-eol-check-add-node-22
  • 6877_check_iml_deployment
4 results

detect-ceph

Blame
  • detect-ceph 558 B
    # ----------------------------------------------------------------------------
    # 
    # EOL - End of life detection - Warn before reaching end of life
    #
    # detect version of CEPH
    #
    # ----------------------------------------------------------------------------
    # 2024-03-26  v1.0  <axel.hahn@iml.unibe.ch>
    # ----------------------------------------------------------------------------
    
    # ----- example output
    #  ceph --version
    #  ceph version 17.2.7 (b12291d110049b2f35e32e0de30d70e9a4c060d2) quincy (stable)
    ceph --version | awk '{ print $3 }' | cut -f 1,2 -d '.'