| --- | |
| # tasks for xos-install role | |
| - name: checkout XOS repo | |
| git: repo={{ xos_repo_url }} | |
| dest={{ xos_repo_dest }} | |
| version={{ xos_repo_branch }} | |
| - name: Rebuild XOS containers | |
| when: xos_container_rebuild | |
| command: make {{ item }} | |
| chdir="{{ xos_repo_dest }}/xos/configurations/{{ xos_configuration }}/" | |
| with_items: | |
| - common_cloudlab | |
| - base | |
| - name: Initial build of XOS | |
| command: make | |
| chdir="{{ xos_repo_dest }}/xos/configurations/{{ xos_configuration }}/" | |