diff options
author | Kaushik BV <kaushikbv@gluster.com> | 2011-04-17 10:46:07 +0000 |
---|---|---|
committer | Anand Avati <avati@gluster.com> | 2011-04-17 21:41:03 -0700 |
commit | 3a621ae053a31db49f7adc506bd5ffbd24a0c64d (patch) | |
tree | 3b4393e35c96e694f45fdf3e1a0d37ce2c64e189 /cli | |
parent | 4b813b3d14476a5cf6a3a54c32c2939a31fe9ba9 (diff) |
mgmt/glusterd : change of syntax of geo-replication command
master is referred as a volume name rather than a URL scheme.
old syntax:
> volume geo-replication start :vol-foo /bar/boo
new syntax:
> volume geo-replication start vol-foo /bar/boo
Signed-off-by: Kaushik BV <kaushikbv@gluster.com>
Signed-off-by: Anand Avati <avati@gluster.com>
BUG: 2786 (Having to prepend geo-replication master vol with colon spoils the UI)
URL: http://bugs.gluster.com/cgi-bin/bugzilla3/show_bug.cgi?id=2786
Diffstat (limited to 'cli')
-rw-r--r-- | cli/src/cli-rpc-ops.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cli/src/cli-rpc-ops.c b/cli/src/cli-rpc-ops.c index b2e919132e3..c92f043c817 100644 --- a/cli/src/cli-rpc-ops.c +++ b/cli/src/cli-rpc-ops.c @@ -2601,7 +2601,7 @@ gf_cli3_1_gsync_get_command (gf1_cli_gsync_set_rsp rsp) if (!rsp.op_name) return -1; - snprintf (cmd, PATH_MAX, GSYNCD_PREFIX "/gsyncd -c %s/%s %s %s " + snprintf (cmd, PATH_MAX, GSYNCD_PREFIX "/gsyncd -c %s/%s :%s %s" " --config-get %s ", rsp.glusterd_workdir, GSYNC_CONF, rsp.master, rsp.slave, rsp.op_name); @@ -2611,7 +2611,7 @@ gf_cli3_1_gsync_get_command (gf1_cli_gsync_set_rsp rsp) */ } else if (rsp.config_type == GF_GSYNC_OPTION_TYPE_CONFIG_GET_ALL) { snprintf (cmd, PATH_MAX, GSYNCD_PREFIX"/gsyncd -c %s/%s " - "%s %s --config-get-all ", + ":%s %s --config-get-all ", rsp.glusterd_workdir, GSYNC_CONF, rsp.master, rsp.slave); |