swiftonfile/ufo/bin/gluster-swift-gen-builders
Peter Portante b0258bcd0f object-storage: del 1.4.8 ref from dir hierarchy
Remove the "swift/1.4.8" directory from the hierarchy, replacing it with "ufo".

Change-Id: I60ba171182d7402a2193616c1c95c90cd2ead5bc
BUG: 870589
Signed-off-by: Peter Portante <peter.portante@redhat.com>
Reviewed-on: http://review.gluster.org/4200
Tested-by: Gluster Build System <jenkins@build.gluster.com>
Reviewed-by: Pete Zaitcev <zaitcev@redhat.com>
Reviewed-by: Anand Avati <avati@redhat.com>
2013-04-29 16:35:56 -04:00

20 lines
503 B
Bash
Executable File

#!/bin/bash
function create {
swift-ring-builder $1 create 0 1 1
swift-ring-builder $1 add z1-127.0.0.1:$2/$3_ 100.0
swift-ring-builder $1 rebalance
swift-ring-builder $1
}
if [ "$1x" = "x" ]; then
echo "Please specify the gluster volume name to use."
exit 1
fi
# Note that these port numbers must match the configured values for the
# various servers in their configuration files.
create account.builder 6012 $1
create container.builder 6011 $1
create object.builder 6010 $1