summaryrefslogtreecommitdiffstats
path: root/glusternagios/hostname.py
diff options
context:
space:
mode:
authorShubhendu Tripathi <shtripat@redhat.com>2014-04-01 15:07:44 +0530
committerBala.FA <barumuga@redhat.com>2014-04-28 16:20:46 +0530
commit2873ff21e4f99b35ab88595a96c0ee45c83d26c3 (patch)
tree70c350ef307c63072a604b3874ea70e3a5366123 /glusternagios/hostname.py
parentea28af4f36370506a76a5ae4fbd56990dd49c71a (diff)
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 <shtripat@redhat.com> Reviewed-on: https://code.engineering.redhat.com/gerrit/22253 Reviewed-by: Darshan Narayana Murthy <dnarayan@redhat.com> Reviewed-by: Timothy Asir Jeyasingh <tjeyasin@redhat.com> Reviewed-by: Balamurugan Arumugam <barumuga@redhat.com> Reviewed-by: Sahina Bose <sabose@redhat.com> Tested-by: Sahina Bose <sabose@redhat.com>
Diffstat (limited to 'glusternagios/hostname.py')
-rw-r--r--glusternagios/hostname.py41
1 files changed, 41 insertions, 0 deletions
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]