This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| # Script for disk monitoring | |
| # Author Epikhin Mikhail | |
| # michael.nomanlab.org | |
| NUBMER=100500 | |
| case "$2" in | |
| "rrqm/s") |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/sh | |
| # | |
| # Zabbix daemon start/stop script. | |
| # | |
| # Copyright (C) 2000-2012 Zabbix SIA | |
| NAME=zabbix_server | |
| #DAEMON=/usr/local/sbin/${NAME} | |
| DAEMON=/usr/sbin/${NAME} | |
| OPTS="-c /opt/zabbix/etc/zabbix_server.conf" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/sh | |
| # | |
| # Zabbix agent start/stop script. | |
| # | |
| # Copyright (C) 2000-2012 Zabbix SIA | |
| NAME=zabbix_agentd | |
| #DAEMON=/usr/local/sbin/${NAME} | |
| DAEMON=/opt/zabbix/sbin/${NAME} | |
| OPTS="-c /opt/zabbix/etc/zabbix_agentd.conf" |