[Gluster-devel] [PATCH 1/3] volgen: Add conf-dir option
Corentin Chary
corentin.chary at gmail.com
Thu Oct 15 12:02:40 UTC 2009
Add a conf-dir option to change the output directory for
generated files.
Signed-off-by: Corentin Chary <corentin.chary at gmail.com>
---
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
More information about the Gluster-devel
mailing list