blob: fdf4eafe64a0878fa23ccfdd798cffe27621c23a [file] [log] [blame]
Zack Williamsa3e40562016-07-05 12:05:39 -07001---
2# test-client-install/tasks/main.yml
3
4- name: Copy over test-client ansible playbook
5 copy:
6 src=test-client-playbook.yml
7 dest={{ ansible_user_dir }}/test-client-playbook.yml
8
9- name: Run the test-client ansible playbook
10 command: ansible-playbook {{ ansible_user_dir }}/test-client-playbook.yml
11 async: 3600
12 poll: 0
13 register: test_client_playbook
Zack Williams35624562016-08-28 17:12:26 -070014 tags:
15 - skip_ansible_lint # running a sub-job
Zack Williamsa3e40562016-07-05 12:05:39 -070016