From 2fb1d93c85693cb8dbd8272ee37bd0239bc7abcd Mon Sep 17 00:00:00 2001 From: timothy Date: Wed, 23 Nov 2011 18:01:56 +0530 Subject: Added get_filesystem_type.py to get list of file system types. Added getFileSystemType function into Utils.py --- .../src/backend/get_filesystem_type.py | 20 ++++++++++++++++++++ .../src/common/Utils.py | 4 ++++ 2 files changed, 24 insertions(+) create mode 100755 src/com.gluster.storage.management.gateway.scripts/src/backend/get_filesystem_type.py (limited to 'src') diff --git a/src/com.gluster.storage.management.gateway.scripts/src/backend/get_filesystem_type.py b/src/com.gluster.storage.management.gateway.scripts/src/backend/get_filesystem_type.py new file mode 100755 index 00000000..00cb3a59 --- /dev/null +++ b/src/com.gluster.storage.management.gateway.scripts/src/backend/get_filesystem_type.py @@ -0,0 +1,20 @@ +#!/usr/bin/python +# Copyright (C) 2011 Gluster, Inc. +# This file is part of Gluster Storage Platform. +# + +import os +import sys +p1 = os.path.abspath(os.path.dirname(sys.argv[0])) +p2 = "%s/common" % os.path.dirname(p1) +if not p1 in sys.path: + sys.path.append(p1) +if not p2 in sys.path: + sys.path.append(p2) +import Utils + +def main(): + print "\n".join(Utils.getFileSystemType()) + +if __name__ == "__main__": + main() diff --git a/src/com.gluster.storage.management.gateway.scripts/src/common/Utils.py b/src/com.gluster.storage.management.gateway.scripts/src/common/Utils.py index fc9bac5d..3c90c533 100644 --- a/src/com.gluster.storage.management.gateway.scripts/src/common/Utils.py +++ b/src/com.gluster.storage.management.gateway.scripts/src/common/Utils.py @@ -15,6 +15,7 @@ import syslog import subprocess import time import tempfile +import glob import Globals @@ -323,3 +324,6 @@ def grun(serverFile, command, argumentList=[]): return 0 else: return 2 + +def getFileSystemType(): + return [os.path.basename(i).split('.')[1] for i in glob.glob("/sbin/mkfs.*")] -- cgit