#!/bin/bash

# Alias: Make NSCA accessable via TCP
# Menu: Distributed Monitoring
# Description:
#  This option is used to make NSCA reachable via TCP on a port configurable with
#  NSCA_TCP_PORT.

case "$1" in
    default)
        echo "off"
    ;;
    choices)
        echo "on: enable"
        echo "off: disable"
    ;;
    set)
    ;;
    depends)
        [ "$CONFIG_CORE" != none ]
    ;;
esac
