#!/bin/bash ############################################################################## # Copyright (c) 2016 ZTE Corporation and others. # # All rights reserved. This program and the accompanying materials # are made available under the terms of the Apache License, Version 2.0 # which accompanies this distribution, and is available at # http://www.apache.org/licenses/LICENSE-2.0 ############################################################################## SCRIPT_PATH=$(readlink -f $(dirname $0)) export PYTHONPATH=$SCRIPT_PATH/.. usage () { cat << EOF xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx `basename $0`: post process after OpenStack is deployed usage: `basename $0` -n network_config_file OPTIONS: -n network configuration path, necessary -h Print this message and exit Description: post process after OpenStack is deployed Examples: sudo `basename $0` -n /home/daisy/labs/zte/virtual1/daisy/config/network.yml xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx EOF } NETWORK='' while getopts "n:h" OPTION do case $OPTION in n) NETWORK=${OPTARG} ;; h) usage exit 0 ;; *) echo "${OPTION} is not a valid argument" usage exit 0 ;; esac done python $PYTHONPATH/deploy/post/execute.py -nw $NETWORK if [ ! $? -eq 0 ]; then exit 1 fi