diff options
author | vmallika <vmallika@redhat.com> | 2014-10-28 12:25:43 +0530 |
---|---|---|
committer | Kaushal M <kaushal@redhat.com> | 2014-11-12 04:36:11 -0800 |
commit | 4fa4b7f2c2b57d1055adb76e8258b0db176bc356 (patch) | |
tree | e4beb4567c57370b8622f19746721e2a0b0f96f1 /tests/snapshot.rc | |
parent | 55aa4b185561edd7b3d1ab77a4f29a4facfdd7ff (diff) |
glusterd/snapshot: Snapshot should be deactivated when it is created
By default snapshot should be deactivated and this should be a
configurable option.
This behaviour can be configured by the command below:
gluster snapshot config activate-on-create <enable|disable>
Change-Id: I1911595c32beed43bb2fca4bf99f0d264b422513
BUG: 1157991
Signed-off-by: vmallika <vmallika@redhat.com>
Reviewed-on: http://review.gluster.org/8985
Tested-by: Gluster Build System <jenkins@build.gluster.com>
Reviewed-by: Avra Sengupta <asengupt@redhat.com>
Reviewed-by: Rajesh Joseph <rjoseph@redhat.com>
Reviewed-by: Kaushal M <kaushal@redhat.com>
Diffstat (limited to 'tests/snapshot.rc')
-rwxr-xr-x | tests/snapshot.rc | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/tests/snapshot.rc b/tests/snapshot.rc index 6ca276d194b..a0c92d96343 100755 --- a/tests/snapshot.rc +++ b/tests/snapshot.rc @@ -291,11 +291,15 @@ function snapshot_n_exists() { function snapshot_status() { local snap=$1; + local cli=$CLI_1; + if [ "$cli" = "" ]; then + cli=$CLI + fi #TODO: Right now just fetches the status of the single snap volume. #When snapshot will have multiple snap volumes, should have a #cummulative logic for status - $CLI_1 snapshot info $snap | grep "Status" | sed 's/.*: //'; + $cli snapshot info $snap | grep "Status" | sed 's/.*: //'; } |