summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorTon Voon <tonvoon@users.sourceforge.net>2008-07-08 09:31:04 (GMT)
committerTon Voon <tonvoon@users.sourceforge.net>2008-07-08 09:31:04 (GMT)
commitb93562e6e235eabbe620dc969702bb381d3a0a07 (patch)
treeced6323b0cb4f863b30a33cfd1dbe029b588efec /lib
parent830f3cc38a0b7ddcb80dc322f7f60f7f73ac9bfe (diff)
downloadmonitoring-plugins-b93562e6e235eabbe620dc969702bb381d3a0a07.tar.gz
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
Diffstat (limited to 'lib')
-rw-r--r--lib/utils_cmd.c18
-rw-r--r--lib/utils_cmd.h1
2 files changed, 19 insertions, 0 deletions
diff --git a/lib/utils_cmd.c b/lib/utils_cmd.c
index aaf055a..5ba2f55 100644
--- a/lib/utils_cmd.c
+++ b/lib/utils_cmd.c
@@ -45,6 +45,7 @@
45#include "common.h" 45#include "common.h"
46#include "utils_cmd.h" 46#include "utils_cmd.h"
47#include "utils_base.h" 47#include "utils_base.h"
48#include <fcntl.h>
48 49
49#ifdef HAVE_SYS_WAIT_H 50#ifdef HAVE_SYS_WAIT_H
50# include <sys/wait.h> 51# include <sys/wait.h>
@@ -377,3 +378,20 @@ cmd_run_array (char *const *argv, output * out, output * err, int flags)
377 378
378 return _cmd_close (fd); 379 return _cmd_close (fd);
379} 380}
381
382int
383cmd_file_read ( char *filename, output *out, int flags)
384{
385 int fd;
386 if(out)
387 memset (out, 0, sizeof(output));
388
389 if ((fd = open(filename, O_RDONLY)) == -1) {
390 die( STATE_UNKNOWN, _("Error opening %s: %s"), filename, strerror(errno) );
391 }
392
393 if(out)
394 out->lines = _cmd_fetch_output (fd, out, flags);
395
396 return 0;
397}
diff --git a/lib/utils_cmd.h b/lib/utils_cmd.h
index d54b2b4..8ebb589 100644
--- a/lib/utils_cmd.h
+++ b/lib/utils_cmd.h
@@ -22,6 +22,7 @@ typedef struct output output;
22/** prototypes **/ 22/** prototypes **/
23int cmd_run (const char *, output *, output *, int); 23int cmd_run (const char *, output *, output *, int);
24int cmd_run_array (char *const *, output *, output *, int); 24int cmd_run_array (char *const *, output *, output *, int);
25int cmd_file_read (char *, output *, int);
25 26
26/* only multi-threaded plugins need to bother with this */ 27/* only multi-threaded plugins need to bother with this */
27void cmd_init (void); 28void cmd_init (void);