blob: 803d2462a7bc0c6bd58031d5e4980bf3e817e741 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
|
##############################################################################
# Copyright (c) 2017 ZTE Coreporation and others.
# feng.xiaowei@zte.com.cn
# 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
##############################################################################
#!/bin/bash
SCRIPT_PATH=$(readlink -f $(dirname $0))
export PYTHONPATH=$SCRIPT_PATH/..
usage ()
{
cat << EOF
xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
`basename $0`: make preparation for daisy deployment
usage: `basename $0` -n network_config_file
OPTIONS:
-n network configuration path, necessary
-b 0 for virtual, 1 for baremetal
-h Print this message and exit
Description:
prepare configuration
Examples:
sudo `basename $0` -n /home/daisy/config/vm_environment/zte-virtual1/network.yml
xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
EOF
}
NETWORK_CONF=''
while getopts "n:b:h" OPTION
do
case $OPTION in
n)
NETWORK_CONF=${OPTARG}
;;
b)
IS_BARE=${OPTARG}
;;
h)
usage
exit 0
;;
*)
echo "${OPTION} is not a valid argument"
usage
exit 0
;;
esac
done
python $PYTHONPATH/deploy/prepare/execute.py -nw $NETWORK_CONF -b $IS_BARE
|