diff options
| -rw-r--r-- | xlators/features/index/src/index.c | 4 | 
1 files changed, 4 insertions, 0 deletions
diff --git a/xlators/features/index/src/index.c b/xlators/features/index/src/index.c index 619de37c13b..ed89c02ae74 100644 --- a/xlators/features/index/src/index.c +++ b/xlators/features/index/src/index.c @@ -2579,18 +2579,22 @@ struct volume_options options[] = {          { .key  = {"index-base" },            .type = GF_OPTION_TYPE_PATH,            .description = "path where the index files need to be stored", +          .default_value = "{{ brick.path }}/.glusterfs/indices"          },          { .key  = {"xattrop64-watchlist" },            .type = GF_OPTION_TYPE_STR,            .description = "Comma separated list of xattrs that are watched", +          .default_value = "trusted.ec.dirty"          },          { .key  = {"xattrop-dirty-watchlist" },            .type = GF_OPTION_TYPE_STR,            .description = "Comma separated list of xattrs that are watched", +          .default_value = "trusted.afr.dirty"          },          { .key  = {"xattrop-pending-watchlist" },            .type = GF_OPTION_TYPE_STR,            .description = "Comma separated list of xattrs that are watched", +          .default_value = "trusted.afr.{{ volume.name }}"          },          { .key  = {NULL} },  };  | 
