From 8c4c69c8fe2e6b9e62034dc1a92d0be0ea7df00c Mon Sep 17 00:00:00 2001
From: Abhijit Sinha <abhijit.sinha@intel.com>
Date: Mon, 5 Feb 2018 09:45:03 +0000
Subject: BugFIX: NSB-setup build script fix for BM

JIRA: YARDSTICK-994

The NSB set-up script for baremetal is broken.
In nsb_setp.yml file, "Prepare baremetal machine"
is commented due to which the ubuntu_server_baremetal_deploy_samplevnfs.yml
file is never called.

Change-Id: Icc95018ba746d6efa5baf09322b3255806da8952
Signed-off-by: Abhijit Sinha <abhijit.sinha@intel.com>
---
 ansible/nsb_setup.yml | 24 ++++++++++++------------
 1 file changed, 12 insertions(+), 12 deletions(-)

(limited to 'ansible')

diff --git a/ansible/nsb_setup.yml b/ansible/nsb_setup.yml
index bfe5d2349..98a59f984 100644
--- a/ansible/nsb_setup.yml
+++ b/ansible/nsb_setup.yml
@@ -12,18 +12,18 @@
 # See the License for the specific language governing permissions and
 # limitations under the License.
 ---
-#- name: Prepare baremetal machine
-#  include: ubuntu_server_baremetal_deploy_samplevnfs.yml
-#  vars:
-#    YARD_IMG_ARCH: amd64
-#
-#- name: Install jumphost dependencies and configure docker
-#  hosts: jumphost
-#  environment:
-#    "{{ proxy_env }}"
-#  roles:
-#    - install_dependencies
-#    - docker
+- name: Prepare baremetal machine
+  include: ubuntu_server_baremetal_deploy_samplevnfs.yml
+  vars:
+    YARD_IMG_ARCH: amd64
+
+- name: Install jumphost dependencies and configure docker
+  hosts: jumphost
+  environment:
+    "{{ proxy_env }}"
+  roles:
+    - install_dependencies
+    - docker
 
 - name: "handle all openstack stuff when: openrc_file is defined"
   include: prepare_openstack.yml
-- 
cgit