diff options
author | 2018-03-14 23:32:34 -0400 | |
---|---|---|
committer | 2018-03-14 23:32:34 -0400 | |
commit | de27afcb45a80cfc530eda2ab732cbc3ef24a76e (patch) | |
tree | 0229f3e5d3698aff5f3931cd03773af38c1aebb9 | |
parent | 43517ac62c33dffafd4a5bfc2d9a3af1350f62ce (diff) |
change rabbitmq-server to rabbitmq for all installers
From the CI results, ha.tc010 can't find the process named rabbitmq-server
for Apex, Compass and Fuel.
Try to change it to be rabbitmq.
Change-Id: Ibf8a9e1c7eeebbc306624fe926c139786b9833fb
Signed-off-by: xudan <xudan16@huawei.com>
-rwxr-xr-x | jjb/dovetail/dovetail-run.sh | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/jjb/dovetail/dovetail-run.sh b/jjb/dovetail/dovetail-run.sh index ec879e325..cb2dab902 100755 --- a/jjb/dovetail/dovetail-run.sh +++ b/jjb/dovetail/dovetail-run.sh @@ -151,6 +151,13 @@ if [[ ! -f ${DOVETAIL_CONFIG}/pod.yaml ]]; then fi if [ -f ${DOVETAIL_CONFIG}/pod.yaml ]; then + echo "Adapt process info for $INSTALLER_TYPE ..." + attack_process='rabbitmq' + cat << EOF >> ${DOVETAIL_CONFIG}/pod.yaml +process_info: +- {testcase_name: dovetail.ha.tc010, attack_process: ${attack_process}} + +EOF echo "file ${DOVETAIL_CONFIG}/pod.yaml:" cat ${DOVETAIL_CONFIG}/pod.yaml else |