diff options
author | Justin chi <chigang@huawei.com> | 2015-09-12 08:15:08 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@172.30.200.206> | 2015-09-12 08:15:08 +0000 |
commit | c8bfaecc87a732f8b31fbb8629893d8df4af7468 (patch) | |
tree | 83eacc46a182f863602f742279963383f6604746 /ci/launch.sh | |
parent | 0e31ef15f4765216d7d7c2354c09576681cda7ff (diff) | |
parent | 9322711b6347bab9c2a7b47792373ddabae3a8a6 (diff) |
Merge "delete unused dir and config item"
Diffstat (limited to 'ci/launch.sh')
-rwxr-xr-x | ci/launch.sh | 65 |
1 files changed, 0 insertions, 65 deletions
diff --git a/ci/launch.sh b/ci/launch.sh deleted file mode 100755 index 316b06f5..00000000 --- a/ci/launch.sh +++ /dev/null @@ -1,65 +0,0 @@ -#set -x -WORK_DIR=$COMPASS_DIR/ci/work - -if [[ $# -ge 1 ]];then - CONF_NAME=$1 -else - CONF_NAME=cluster -fi - -source ${COMPASS_DIR}/ci/log.sh -source ${COMPASS_DIR}/deploy/conf/${CONF_NAME}.conf -source ${COMPASS_DIR}/deploy/prepare.sh -source ${COMPASS_DIR}/deploy/network.sh - -if [[ ! -z $VIRT_NUMBER ]];then - source ${COMPASS_DIR}/deploy/host_vm.sh -else - source ${COMPASS_DIR}/deploy/host_baremetal.sh -fi - -source ${COMPASS_DIR}/deploy/compass_vm.sh -source ${COMPASS_DIR}/deploy/deploy_host.sh - -######################### main process - -if ! prepare_env;then - echo "prepare_env failed" - exit 1 -fi - -log_info "########## get host mac begin #############" -machines=`get_host_macs` -if [[ -z $machines ]];then - log_error "get_host_macs failed" - exit 1 -fi - -log_info "deploy host macs: $machines" -export machines - -log_info "########## set up network begin #############" -if ! create_nets;then - log_error "create_nets failed" - exit 1 -fi - -if ! launch_compass;then - log_error "launch_compass failed" - exit 1 -fi -if [[ ! -z $VIRT_NUMBER ]];then - if ! launch_host_vms;then - log_error "launch_host_vms failed" - exit 1 - fi -fi -if ! deploy_host;then - #tear_down_machines - #tear_down_compass - exit 1 -else - #tear_down_machines - #tear_down_compass - exit 0 -fi |