gluster-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Gluster-devel] [PATCH 1/3] volgen: Add conf-dir option


From: Corentin Chary
Subject: [Gluster-devel] [PATCH 1/3] volgen: Add conf-dir option
Date: Thu, 15 Oct 2009 12:02:40 +0000

Add a conf-dir option to change the output directory for
generated files.

Signed-off-by: Corentin Chary <address@hidden>
---
 extras/glusterfs-volgen.py |    7 ++++++-
 1 files changed, 6 insertions(+), 1 deletions(-)

diff --git a/extras/glusterfs-volgen.py b/extras/glusterfs-volgen.py
index d3783ab..2d6d4f5 100644
--- a/extras/glusterfs-volgen.py
+++ b/extras/glusterfs-volgen.py
@@ -304,7 +304,7 @@ def main ():
     mount_volume_path="/dev/stdout"
 
     try:
-        (opt, args) = getopt.getopt (sys.argv[1:], "r:t:c:p:d:n:uh",
+        (opt, args) = getopt.getopt (sys.argv[1:], "r:t:c:p:d:n:o:uh",
                                      ["raid=",
                                       "transport=",
                                       "cache-size=",
@@ -313,6 +313,7 @@ def main ():
                                       "num-stripe=",
                                       "num-replica=",
                                       "name=",
+                                      "conf-dir=",
                                       "upgrade",
                                       "usage",
                                       "help"])
@@ -337,6 +338,10 @@ def main ():
             
         if o == '-n' or o == '--name':
             main_name = val
+
+        if o == '-o' or o == '--conf-dir':
+            print val
+            confdir = val
             
         if o == '-d' or o == '--export-directory':
             export_dir = val
-- 
1.6.4.4





reply via email to

[Prev in Thread] Current Thread [Next in Thread]