Add update_src var

This commit is contained in:
Michael Davies 2015-11-30 20:24:42 +10:30
parent 9fe1519921
commit fffaf0e52d
2 changed files with 5 additions and 2 deletions

View File

@ -19,6 +19,9 @@
debug: False
verbose: True
# Update source
update_src: True
# Name of the virtual env to deploy into
ironic_venv_tag: untagged
ironic_venv_bin: "/openstack/venvs/ironic-{{ ironic_venv_tag }}/bin"

View File

@ -17,7 +17,7 @@
git: repo=https://github.com/openstack/ironic.git
dest={{ ironic_git_dest }}
version={{ ironic_git_install_branch }}
update=no
update={{ update_src }}
register: ironic_checkout
tags:
- ironic-api
@ -27,7 +27,7 @@
git: repo=https://github.com/openstack/python-ironicclient.git
dest={{ python_ironicclient_git_dest }}
version={{ python_ironicclient_git_install_branch }}
update=no
update={{ update_src }}
register: python_ironicclient_checkout
tags:
- ironic-client