ef0348db96
* Added get vcenter cluster name from "Vmware" tab * Added convert cluster name to morefid * Added public/private key to controller/compute nodes * Added script, what check and configure neutron, if need * Added task for connect to controller from compute-vmware via ssh and execute neutron reconfigure script * Update documentation Change-Id: I0dbd6b15fc2cb1efd0de009ee79a27222fe4bab3
15 lines
566 B
Bash
Executable File
15 lines
566 B
Bash
Executable File
#!/bin/bash
|
|
# Add here any the actions which are required before plugin build
|
|
# like packages building, packages downloading from mirrors and so on.
|
|
# The script should return 0 if there were no errors.
|
|
|
|
set -eux
|
|
|
|
ROOT="$(dirname `readlink -f $0`)"
|
|
|
|
version=$(sed -rn 's/^version:\s*([0-9.])/\1/p' $ROOT/metadata.yaml)
|
|
name=$(sed -rn 's/^name:\s*(.*)/\1/p' $ROOT/metadata.yaml)
|
|
|
|
sed -i "s/'NAME'/'$name'/" $ROOT/deployment_scripts/puppet/manifests/*.pp
|
|
sed -i "s/'NAME'/'$name'/" $ROOT/deployment_scripts/puppet/modules/nsxv/files/reconf_neutron_with_new_compute.sh
|