UNPKG

@porosys/pss

Version:

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

16 lines (14 loc) 496 B
import { Dependency } from '../../../../types'; import { installStatsd } from '../../../../utils/install-statsd.util'; import { uninstallStatsd } from '../../../../utils/uninstall-statsd.util'; export const configChangeAlertDeps: Dependency[] = [ { binary: 'nc', packageName: 'netcat' }, { binary: 'cron', packageName: 'cron' }, { binary: 'md5sum', packageName: 'coreutils' }, { binary: 'statsd', custom: true, install: installStatsd, uninstall: uninstallStatsd, }, ];