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

check_reboot_required

Blame
  • hello 615 B
    #!/bin/bash
    # ======================================================================
    #
    # Dummy check - just send OK
    #
    # This is default check for non reachable hosts in private networks.
    # It can be defined as a check in global zone to be deployed to 
    # sattelite nodes.
    #
    # ----------------------------------------------------------------------
    # 2021-06-04  v1.0  <axel.hahn@iml.unibe.ch> hello :-)
    # ======================================================================
    
    . `dirname $0`/inc_pluginfunctions
    ph.status "Here I am!"
    ph.exit
    
    # ----------------------------------------------------------------------