blob: ba656e4cb4fe7a44da5f39cc02a43f688a1f431c [file] [log] [blame]
Zack Williamsfc102dd2016-03-01 17:31:30 -07001---
2# tasks for xos-install role
3
Zack Williamsd2cbe512016-06-03 09:33:15 -07004- name: checkout XOS repo
5 git: repo={{ xos_repo_url }}
6 dest={{ xos_repo_dest }}
7 version={{ xos_repo_branch }}
8
Zack Williamsc563b572016-06-03 09:49:53 -07009- name: Rebuild XOS containers
10 when: xos_container_rebuild
Zack Williams72a9ab42016-06-08 08:32:49 -070011 command: make {{ item }}
Zack Williamsc563b572016-06-03 09:49:53 -070012 chdir="{{ xos_repo_dest }}/xos/configurations/{{ xos_configuration }}/"
Zack Williams72a9ab42016-06-08 08:32:49 -070013 with_items:
14 - common_cloudlab
15 - base
Zack Williamsc563b572016-06-03 09:49:53 -070016
Zack Williamsd2cbe512016-06-03 09:33:15 -070017- name: Initial build of XOS
18 command: make
19 chdir="{{ xos_repo_dest }}/xos/configurations/{{ xos_configuration }}/"
20