Skip to content
Snippets Groups Projects
Select Git revision
  • af8b46e44ea4f5186cf4ccdcf8180ec7baab8b16
  • master default protected
  • update_repo_url
  • update-docs
4 results

README.md

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
    
    # ----------------------------------------------------------------------