UNPKG

@porosys/pss

Version:

Porosys Server Setup (pss): General-purpose server setup and automation tool (including Netdata management)

17 lines (15 loc) 536 B
import { Dependency } from '../../../../types'; import { installStatsd } from '../../../../utils/install-statsd.util'; import { uninstallStatsd } from '../../../../utils/uninstall-statsd.util'; export const sshBruteforceAlertDeps: Dependency[] = [ { binary: 'nc', packageName: 'netcat' }, { binary: 'cron', packageName: 'cron' }, { binary: 'grep', packageName: 'grep' }, { binary: 'wc', packageName: 'coreutils' }, { binary: 'statsd', custom: true, install: installStatsd, uninstall: uninstallStatsd, }, ];