From: Tim Rozet Date: Tue, 28 Feb 2017 16:20:47 +0000 (+0000) Subject: Merge "Removing sctp module load from Apex" X-Git-Tag: danube.1.0~47 X-Git-Url: https://gerrit.opnfv.org/gerrit/gitweb?a=commitdiff_plain;h=e40c38ebf60891f0b2693b57516e518b69fa161a;hp=8f38df4d1c7be93822f2f8ec7f385d98d172a613;p=apex.git Merge "Removing sctp module load from Apex" --- diff --git a/config/deploy/deploy_settings.yaml b/config/deploy/deploy_settings.yaml index 9d028a47..b3d3ac2b 100644 --- a/config/deploy/deploy_settings.yaml +++ b/config/deploy/deploy_settings.yaml @@ -88,3 +88,6 @@ deploy_options: # Set yardstick option to install yardstick #yardstick: false + + # Set dovetail option to install dovetail + #dovetail: false diff --git a/lib/post-install-functions.sh b/lib/post-install-functions.sh index c09383d6..abc43952 100755 --- a/lib/post-install-functions.sh +++ b/lib/post-install-functions.sh @@ -213,16 +213,29 @@ EOI overcloud_connect "compute0" "sudo sh -c 'cd /var/opt/vsperf/systems/ && ./build_base_machine.sh 2>&1 > /var/log/vsperf.log'" fi - # install docker and pull yardstick image - if [[ "${deploy_options_array['yardstick']}" == 'True' ]]; then + # install docker + if [ "${deploy_options_array['yardstick']}" == 'True' ] || [ "${deploy_options_array['dovetail']}" == 'True' ]; then ssh -T ${SSH_OPTIONS[@]} "stack@$UNDERCLOUD" <