diff options
| author | Pranith Kumar K <pranithk@gluster.com> | 2012-05-24 20:45:56 +0530 | 
|---|---|---|
| committer | Vijay Bellur <vijay@gluster.com> | 2012-05-28 12:45:23 -0700 | 
| commit | 42491cf4eac02dd3f3ae9ee57e8af16873ca30b8 (patch) | |
| tree | b4bddaacdf0b33e478a781ba1ec0e4dc37350a4c /xlators | |
| parent | 063679d8fbeaad7034db33f1dc4cb1713754cb3a (diff) | |
mgmt/glusterd: self-heals should be on in glustershd
Change-Id: I804dee79eaba0a1b055ad51a194278c8fec8de8f
BUG: 825740
Signed-off-by: Pranith Kumar K <pranithk@gluster.com>
Reviewed-on: http://review.gluster.com/3461
Tested-by: Gluster Build System <jenkins@build.gluster.com>
Reviewed-by: Raghavendra Bhat <raghavendra@redhat.com>
Reviewed-by: Vijay Bellur <vijay@gluster.com>
Diffstat (limited to 'xlators')
| -rw-r--r-- | xlators/mgmt/glusterd/src/glusterd-volgen.c | 8 | 
1 files changed, 8 insertions, 0 deletions
diff --git a/xlators/mgmt/glusterd/src/glusterd-volgen.c b/xlators/mgmt/glusterd/src/glusterd-volgen.c index 98447cb23..621a42f53 100644 --- a/xlators/mgmt/glusterd/src/glusterd-volgen.c +++ b/xlators/mgmt/glusterd/src/glusterd-volgen.c @@ -3335,6 +3335,14 @@ glusterd_create_shd_volfile ()          if (ret)                  goto out; +        ret = dict_set_str (mod_dict, "cluster.metadata-self-heal", "on"); +        if (ret) +                goto out; + +        ret = dict_set_str (mod_dict, "cluster.entry-self-heal", "on"); +        if (ret) +                goto out; +          glusterd_get_nodesvc_volfile ("glustershd", conf->workdir,                                        filepath, sizeof (filepath));          ret = glusterd_create_global_volfile (build_shd_graph, filepath,  | 
