From b93562e6e235eabbe620dc969702bb381d3a0a07 Mon Sep 17 00:00:00 2001 From: Ton Voon Date: Tue, 8 Jul 2008 09:31:04 +0000 Subject: check_procs captures stderr and adds to plugin output. This is from a merge of branch nagiosplug/branches/new_threshold_syntax 1979:1982 git-svn-id: https://nagiosplug.svn.sourceforge.net/svnroot/nagiosplug/nagiosplug/trunk@2019 f882894a-f735-0410-b71e-b25c423dba1c --- lib/utils_cmd.c | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) (limited to 'lib/utils_cmd.c') diff --git a/lib/utils_cmd.c b/lib/utils_cmd.c index aaf055a9..5ba2f55e 100644 --- a/lib/utils_cmd.c +++ b/lib/utils_cmd.c @@ -45,6 +45,7 @@ #include "common.h" #include "utils_cmd.h" #include "utils_base.h" +#include #ifdef HAVE_SYS_WAIT_H # include @@ -377,3 +378,20 @@ cmd_run_array (char *const *argv, output * out, output * err, int flags) return _cmd_close (fd); } + +int +cmd_file_read ( char *filename, output *out, int flags) +{ + int fd; + if(out) + memset (out, 0, sizeof(output)); + + if ((fd = open(filename, O_RDONLY)) == -1) { + die( STATE_UNKNOWN, _("Error opening %s: %s"), filename, strerror(errno) ); + } + + if(out) + out->lines = _cmd_fetch_output (fd, out, flags); + + return 0; +} -- cgit v1.2.3