UNPKG

@porosys/ndtool

Version:

Netdata alert and automation tool

16 lines (14 loc) 490 B
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, }, ];