5c263fb437
Avoids runtime warnings from use of Ansible shell/command module when executed commands also have ansible modules. Change-Id: I4e415cbd34f0f4cb15857051bf95458e0316de86
10 lines
219 B
YAML
10 lines
219 B
YAML
- hosts: all
|
|
tasks:
|
|
- name: Setup file
|
|
command: stack new new-project
|
|
|
|
- name: Copy file over zuul-jobs
|
|
command: rsync -a new-project/ "{{ zuul.project.src_dir }}/"
|
|
args:
|
|
warn: false
|