Skip to content
Snippets Groups Projects
Select Git revision
  • 7e67d1189e7286fc3457bad8f9b1a98bc79fb3ac
  • master default protected
  • 7771-harden-postgres-backup
  • pgsql-dump-with-snapshots
  • update-colors
  • update-docs-css
  • usb-repair-stick
  • desktop-notification
  • 7000-corrections
  • db-detector
10 results

sqlite.sh

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