Scott Baker | e0a8089 | 2016-11-23 12:07:07 -0800 | [diff] [blame] | 1 | --- |
| 2 | # xos-head-start/tasks/main.yml |
| 3 | |
| 4 | # Performs any configuration of XOS that should be done right before starting |
| 5 | # XOS. This includes copying the admin-openrc.sh, since we had to wait for juju |
| 6 | # to finish before admin-openrc.sh was present. |
| 7 | |
| 8 | - name: Copy admin-openrc.sh to service-profile |
| 9 | # command: cp ~/admin-openrc.sh {{ service_profile_repo_dest }}/{{ xos_configuration }} |
| 10 | copy: |
| 11 | remote_src=True |
| 12 | src=~/admin-openrc.sh |
| 13 | dest={{ service_profile_repo_dest }}/{{ xos_configuration }} |
| 14 | |
| 15 | |