summaryrefslogtreecommitdiffstats
path: root/extras
diff options
context:
space:
mode:
authorAmar Tumballi <amar@gluster.com>2010-08-26 05:53:41 +0000
committerAnand V. Avati <avati@dev.gluster.com>2010-08-26 07:31:13 -0700
commit9fe52c92ace1c8c1e6e016aad8bb14973d6c9dc0 (patch)
tree4934eac56bfe5aa6e4f098093b98fdd30d13b285 /extras
parent44f187fad77512e6b9d22852b79dc9621d688798 (diff)
glusterd: handle failure of 'getspec' in case of '-' in volume name
Signed-off-by: Amar Tumballi <amar@gluster.com> Signed-off-by: Anand V. Avati <avati@dev.gluster.com> BUG: 1433 () URL: http://bugs.gluster.com/cgi-bin/bugzilla3/show_bug.cgi?id=1433
Diffstat (limited to 'extras')
-rw-r--r--extras/volgen/CreateVolfile.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/extras/volgen/CreateVolfile.py b/extras/volgen/CreateVolfile.py
index 22cffcffe29..c8143a03aba 100644
--- a/extras/volgen/CreateVolfile.py
+++ b/extras/volgen/CreateVolfile.py
@@ -348,7 +348,7 @@ class CreateVolfile:
i = 0
for export in self.host_dict[self.host]:
export_volfile = "%s/%s-%d.vol" % (self.conf_dir,
- str(self.host + '-' + self.volume_name),
+ str(self.volume_name + '.' + self.host),
i)
i += 1
exp_fd = file ("%s" % (export_volfile),"w")