@porosys/pss
Version:
Porosys Server Setup (pss): General-purpose server setup and automation tool (including Netdata management)
15 lines (14 loc) • 507 B
JavaScript
import { installStatsd } from '../../../../utils/install-statsd.util.js';
import { uninstallStatsd } from '../../../../utils/uninstall-statsd.util.js';
export const sshBruteforceAlertDeps = [
{ binary: 'nc', packageName: 'netcat' },
{ binary: 'cron', packageName: 'cron' },
{ binary: 'grep', packageName: 'grep' },
{ binary: 'wc', packageName: 'coreutils' },
{
binary: 'statsd',
custom: true,
install: installStatsd,
uninstall: uninstallStatsd,
},
];