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,
  },
];
