@porosys/pss
Version:
Porosys Server Setup (pss): General-purpose server setup and automation tool (including Netdata management)
16 lines (14 loc) • 499 B
text/typescript
import { Dependency } from '../../../../types';
import { installStatsd } from '../../../../utils/install-statsd.util';
import { uninstallStatsd } from '../../../../utils/uninstall-statsd.util';
export const serviceDeactiveAlertDeps: Dependency[] = [
{ binary: 'nc', packageName: 'netcat' },
{ binary: 'cron', packageName: 'cron' },
{ binary: 'md5sum', packageName: 'coreutils' },
{
binary: 'statsd',
custom: true,
install: installStatsd,
uninstall: uninstallStatsd,
},
];