From 2873ff21e4f99b35ab88595a96c0ee45c83d26c3 Mon Sep 17 00:00:00 2001 From: Shubhendu Tripathi Date: Tue, 1 Apr 2014 15:07:44 +0530 Subject: gluster-nagios-common: Added gluster cli module Introduced gluster cli module to add all the gluster related get methods Change-Id: I440ae89ac3f93f961024a6e78870154f57b7dfbd Signed-off-by: Shubhendu Tripathi Reviewed-on: https://code.engineering.redhat.com/gerrit/22253 Reviewed-by: Darshan Narayana Murthy Reviewed-by: Timothy Asir Jeyasingh Reviewed-by: Balamurugan Arumugam Reviewed-by: Sahina Bose Tested-by: Sahina Bose --- glusternagios/hostname.py | 41 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 41 insertions(+) create mode 100644 glusternagios/hostname.py (limited to 'glusternagios/hostname.py') diff --git a/glusternagios/hostname.py b/glusternagios/hostname.py new file mode 100644 index 0000000..6277569 --- /dev/null +++ b/glusternagios/hostname.py @@ -0,0 +1,41 @@ +# Copyright 2014 Red Hat, Inc. +# +# This program is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 2 of the License, or +# (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software +# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA +# +# Refer to the README and COPYING files for full details of the license +# + +import utils + +_hostNameCommandPath = utils.CommandPath("hostname", + "/bin/hostname", + ) + + +class HostNameException(Exception): + def __init__(self, rc): + self.rc = rc + self.message = 'hostname execution failed with error code %s' % self.rc + + def __str__(self): + return self.message + + +def getHostNameFqdn(): + rc, out, err = utils.execCmd([_hostNameCommandPath.cmd, '--fqdn']) + if rc: + raise HostNameException(rc) + else: + return out[0] -- cgit