summaryrefslogtreecommitdiffstats
path: root/plugins/nscautils.py.in
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/nscautils.py.in')
-rw-r--r--plugins/nscautils.py.in20
1 files changed, 10 insertions, 10 deletions
diff --git a/plugins/nscautils.py.in b/plugins/nscautils.py.in
index cf5f58b..703e13f 100644
--- a/plugins/nscautils.py.in
+++ b/plugins/nscautils.py.in
@@ -69,15 +69,15 @@ def send_to_nsca_subproc(hostName, serviceName, exitStatus, resultString):
resultString)
nagiosIP = getNagiosServerIP()
p = subprocess.Popen(
- args=(
- __NSCA_CMD_PATH.cmd,
- '-c', __NSCA_CONF_PATH,
- '-H', nagiosIP,
- ),
- stdin=subprocess.PIPE,
- stdout=subprocess.PIPE,
- stderr=subprocess.PIPE,
- close_fds=True,
+ args=(
+ __NSCA_CMD_PATH.cmd,
+ '-c', __NSCA_CONF_PATH,
+ '-H', nagiosIP,
+ ),
+ stdin=subprocess.PIPE,
+ stdout=subprocess.PIPE,
+ stderr=subprocess.PIPE,
+ close_fds=True,
)
stdout, stderr = p.communicate(input=cmddata)
@@ -86,4 +86,4 @@ def send_to_nsca_subproc(hostName, serviceName, exitStatus, resultString):
def vol_service_name(volName, statusType=None):
- return "Volume Status %s - %s" % (statusType, volName)
+ return "Volume %s - %s" % (statusType, volName)