diff options
author | Rodolfo Alonso Hernandez <rodolfo.alonso.hernandez@intel.com> | 2017-11-28 14:02:34 +0000 |
---|---|---|
committer | Rodolfo Alonso Hernandez <rodolfo.alonso.hernandez@intel.com> | 2017-11-28 14:03:56 +0000 |
commit | 617bcbf5b9611b72d1e5265fbe2078873c57a037 (patch) | |
tree | 6b22b288197e6b206c5863d9b23bc2441e1ddcf5 | |
parent | 75606db72e5d3afb6afe590e76b3baef3af3f5c6 (diff) |
Remove img_modify_playbook assignation in build_yardstick_image.yml
Variable "img_modify_playbook" is being assigned in first context of
./ansible/build_yardstick_image.yml [1]. However this variable is never used.
In second context [2], the variable used is a CLI input variable.
[1]https://github.com/opnfv/yardstick/blob/stable/euphrates/ansible/build_yardstick_image.yml#L187
[2]https://github.com/opnfv/yardstick/blob/stable/euphrates/ansible/build_yardstick_image.yml#L205
JIRA: YARDSTICK-871
Change-Id: I7bd5063c5e86520abcafdc782222ee53faf58f45
Signed-off-by: Rodolfo Alonso Hernandez <rodolfo.alonso.hernandez@intel.com>
-rw-r--r-- | ansible/build_yardstick_image.yml | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/ansible/build_yardstick_image.yml b/ansible/build_yardstick_image.yml index d7ac866c2..bc57bcd48 100644 --- a/ansible/build_yardstick_image.yml +++ b/ansible/build_yardstick_image.yml @@ -186,14 +186,6 @@ mode: 0755 when: "target_os == 'Ubuntu'" - - name: set img_modify_playbook - set_fact: - img_modify_playbook: ubuntu_server_cloudimg_modify.yml - - - debug: - var: img_modify_playbook - verbosity: 2 - - name: add chroot as host add_host: name: "{{ mountdir }}" |