Merge "Ensure git_root folder exists"

This commit is contained in:
Jenkins 2016-12-05 21:07:17 +00:00 committed by Gerrit Code Review
commit 3554282b3a

View File

@ -13,6 +13,13 @@
# See the License for the specific language governing permissions and
# limitations under the License.
---
- name: ensure installation root folder exists
file:
state: directory
dest: "{{ git_root }}"
owner: "{{ ansible_user_id }}"
group: "{{ ansible_user_gid }}"
- name: "Download via GIT"
include: git_download.yaml
when: ci_testing_zuul | bool == false and copy_from_local_path | bool == false