#!/bin/sh

case "$1" in
    "post-start"|"post-restart")
        if [ "$3" = "0" ]; then
            /usr/local/nsc/bin/snort-scan-sshd
        fi
    ;;
esac
