summaryrefslogtreecommitdiff
path: root/net-mgmt/zabbix2/scripts/zabbix.sh.sample
diff options
context:
space:
mode:
Diffstat (limited to 'net-mgmt/zabbix2/scripts/zabbix.sh.sample')
-rw-r--r--net-mgmt/zabbix2/scripts/zabbix.sh.sample16
1 files changed, 0 insertions, 16 deletions
diff --git a/net-mgmt/zabbix2/scripts/zabbix.sh.sample b/net-mgmt/zabbix2/scripts/zabbix.sh.sample
deleted file mode 100644
index 58c0529b4099..000000000000
--- a/net-mgmt/zabbix2/scripts/zabbix.sh.sample
+++ /dev/null
@@ -1,16 +0,0 @@
-#!/bin/sh
-
-case "${1}" in
- start)
- echo -n "zabbix "
- zabbix_suckerd
- zabbix_trapperd
- ;;
- stop)
- killall zabbix_suckerd
- killall zabbix_trapperd
- ;;
- *)
- echo Usage: `basename ${0}` "{start|stop}"
- ;;
-esac