Hi everyone!
I have a question regarding external checks:
I have a script with string of parameters:
When I'm adding it to Zabbix as below:
check_GA.sh[testuser pass123 MYHOST]
It doesn't return anything, but when I put the same in other script
and put it in Zabbix as
check_crmdocs_GA.sh[]
all work as it should. How can I make check_GA.sh[testuser pass123 MYHOST] work instead of using a bunch of unnecessary scripts?
I have a question regarding external checks:
I have a script with string of parameters:
Code:
./check_GA.sh testuser pass123 MYHOST
check_GA.sh[testuser pass123 MYHOST]
It doesn't return anything, but when I put the same in other script
Code:
less ./check_crmdocs_GA.sh #!/bin/bash cd /data/pandora/local/zabbix_scripts/externalscripts/ && ./check_GA.sh testuser pass123 MYHOST
check_crmdocs_GA.sh[]
all work as it should. How can I make check_GA.sh[testuser pass123 MYHOST] work instead of using a bunch of unnecessary scripts?

Comment