summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authortimothy <timothy@malar.(none)>2011-11-23 18:01:56 +0530
committertimothy <timothy@malar.(none)>2011-11-23 18:01:56 +0530
commit2fb1d93c85693cb8dbd8272ee37bd0239bc7abcd (patch)
tree39c4ee53b00e26dcddc99583ab8014a7c0c6e5d3 /src
parenta8048501b4ba5e52ef943aed017e655024f010a0 (diff)
Added get_filesystem_type.py to get list of file system types.
Added getFileSystemType function into Utils.py
Diffstat (limited to 'src')
-rwxr-xr-xsrc/com.gluster.storage.management.gateway.scripts/src/backend/get_filesystem_type.py20
-rw-r--r--src/com.gluster.storage.management.gateway.scripts/src/common/Utils.py4
2 files changed, 24 insertions, 0 deletions
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. <http://www.gluster.com>
+# 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.*")]