Remove unneeded sourcing of browbeat-venv

Other playbooks/roles don't operate within venv. There is no need
for this role to.

Change-Id: I2ef82db30a22ba34fac1dfed0fcdc1ad5a1ad00b
This commit is contained in:
Sai Sindhur Malleni 2019-03-02 15:18:49 -05:00
parent 189da7eb04
commit 3423e3c6a3
1 changed files with 1 additions and 1 deletions

View File

@ -5,6 +5,6 @@
# Ignore errors here incase the flavors already exist.
- name: Add flavors to overcloud
shell: . {{ browbeat_venv }}/bin/activate; . {{ overcloudrc }}; nova flavor-create {{item.name}} auto {{item.memory}} {{item.disk}} {{item.cpu}}
shell: . {{ overcloudrc }}; nova flavor-create {{item.name}} auto {{item.memory}} {{item.disk}} {{item.cpu}}
with_items: "{{browbeat_flavors}}"
ignore_errors: true