Code

Added multiline output capability to check_by_ssh. Thanks to Matthias Flacke (#1769653)
authorMatthias Eble <psychotrahe@users.sourceforge.net>
Sun, 23 Sep 2007 12:26:03 +0000 (12:26 +0000)
committerMatthias Eble <psychotrahe@users.sourceforge.net>
Sun, 23 Sep 2007 12:26:03 +0000 (12:26 +0000)
git-svn-id: https://nagiosplug.svn.sourceforge.net/svnroot/nagiosplug/nagiosplug/trunk@1792 f882894a-f735-0410-b71e-b25c423dba1c

NEWS
plugins/check_by_ssh.c

diff --git a/NEWS b/NEWS
index 5b0981e82ef434d34e2dde38eccd437cc57c4f4d..8b160c8c0044ee3724b4f995d563cf8ae048418f 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -29,6 +29,7 @@ This file documents the major additions and syntax changes between releases.
          - enforce a full path for the command to run
        The "negate" utility can now remap custom states
        Check_radius now supports radiusclient-ng
+       Check_by_ssh now supports multiline output
 
 1.4.9 4th June 2006
        Inclusion of contrib/check_cluster2 as check_cluster with some improvements
index 46d1297fe744b6bd0097e84712a24cd74a1bf963..7306e743da5cb162a9179713b6f6c6eff64eafc5 100644 (file)
@@ -110,7 +110,8 @@ main (int argc, char **argv)
         * Wrap up quickly and keep the tricks below */
        if(!passive) {
                if (chld_out.lines > skip_stdout)
-                       puts (chld_out.line[skip_stdout]);
+                       for (i = skip_stdout; i < chld_out.lines; i++)
+                               puts (chld_out.line[i]);
                else
                        printf (_("%s - check_by_ssh: Remote command '%s' returned status %d\n"),
                                state_text(result), remotecmd, result);