Paul Belanger | b52fd51 | 2017-02-22 13:41:55 -0500 | [diff] [blame] | 1 | - name: Ensure console.log does not exist. |
| 2 | file: |
| 3 | path: /tmp/console.log |
| 4 | state: absent |
| 5 | |
| 6 | - name: Start zuul_console daemon. |
| 7 | zuul_console: |
| 8 | path: /tmp/console.log |
| 9 | port: 19885 |
| 10 | |
| 11 | - name: Create workspace directory. |
| 12 | file: |
| 13 | path: "{{ prepare_workspace_root }}" |
| 14 | owner: zuul |
| 15 | group: zuul |
| 16 | state: directory |
| 17 | |
| 18 | - name: Synchronize src repos to workspace directory. |
| 19 | synchronize: |
| 20 | dest: "{{ prepare_workspace_root }}" |
Paul Belanger | 174a827 | 2017-03-14 13:20:10 -0400 | [diff] [blame] | 21 | src: "{{ zuul.executor.src_root }}" |