# Register function with the plugin registry
$PLUGINS{'ssh'} = \&check_ssh;

# Check the ssh service with the built-in check_simple routine
sub check_ssh {
    my ($host) = @_;
    return &check_simple( $host, 22, "", "^SSH", "ssh" );
}

1;
