Search found 2 matches
- Fri Jul 01, 2011 10:16 am
- Forum: Open Source Nagios Projects
- Topic: Nagios & ServiceDesk integration
- Replies: 1
- Views: 3073
Re: Nagios & ServiceDesk integration
Edit: Ok, i reedited abit my script, and if statement works fine now #!/bin/bash cd /usr/local/nagios/etc status=$(cat status.not) name=$(cat name.not) id=$(cat id.request) if [ "x$status" == "xOK" ]; then echo "@@OPERATION=CloseRequest@@">mail.not; echo "@@REQUEST...
- Fri Jul 01, 2011 4:37 am
- Forum: Open Source Nagios Projects
- Topic: Nagios & ServiceDesk integration
- Replies: 1
- Views: 3073
Nagios & ServiceDesk integration
Hello, im trying to do an integration of Nagios with ManageEngine ServiceDesk Plus. The idea is to send custom email notification from Nagios, that will be parsed by ServiceDesk in order to create tickets, and close them automaticly if reported service/host returns to OK state. Therefor, i reedited ...