summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRamesh Nachimuthu <rnachimu@redhat.com>2014-06-20 16:52:27 +0530
committerSahina Bose <sabose@redhat.com>2014-07-02 01:59:27 -0700
commit651a0fca2c07cb844f6bdc57b0a8b2fa3e3cbc9f (patch)
tree28d7d137ae39a1f29dd8e11eb17d618c6ca47d32
parentbf9e7d12ed17e096197f2568a07b8f959c6eab89 (diff)
server-addons: Fix typo in error message
Fixing typo 'NPRE' in server_utils.execNRPECommand() Bug-Url: https://bugzilla.redhat.com/1108569 Change-Id: I9b29780661353eb0b82ef24a390c2d2091f7ea4e Signed-off-by: Ramesh Nachimuthu <rnachimu@redhat.com> Reviewed-on: http://review.gluster.org/8130 Reviewed-by: Sahina Bose <sabose@redhat.com>
-rwxr-xr-xplugins/server_utils.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/server_utils.py b/plugins/server_utils.py
index 46a8cf4..e2271ba 100755
--- a/plugins/server_utils.py
+++ b/plugins/server_utils.py
@@ -114,6 +114,6 @@ def execNRPECommand(host,
else:
print "Failed to execute NRPE command '%s' in host '%s' " \
"\nError : %s" \
- "Make sure NPRE server in host '%s' is configured to accept " \
+ "Make sure NRPE server in host '%s' is configured to accept " \
"requests from Nagios server" % (command, host, outputStr, host)
sys.exit(utils.PluginStatusCode.CRITICAL)