diff options
author | wutianwei <wutianwei1@huawei.com> | 2017-10-16 11:12:50 +0800 |
---|---|---|
committer | wutianwei <wutianwei1@huawei.com> | 2017-10-16 16:20:45 +0800 |
commit | 05aafa14c76537222fac2f93fc6ab7bec741cff5 (patch) | |
tree | e5879c9b6bdfbfe358aa6e387fc0b227f153d48b /deploy/adapters/ansible/roles/config-osa/tasks | |
parent | 45af5111e2c39105cdfd38a7ab8f3def25c3779d (diff) |
Ascertain the pandas version
the 0.21.0rc1 version of pandas will block the gnocchi install,
so we use 0.20.3. we replace the pandas package in repo
Change-Id: Ic8d9fa3a691b64a0783034ffbf0d958427e30d16
Signed-off-by: wutianwei <wutianwei1@huawei.com>
Diffstat (limited to 'deploy/adapters/ansible/roles/config-osa/tasks')
-rwxr-xr-x | deploy/adapters/ansible/roles/config-osa/tasks/main.yml | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/deploy/adapters/ansible/roles/config-osa/tasks/main.yml b/deploy/adapters/ansible/roles/config-osa/tasks/main.yml index 139b426f..d3779fd4 100755 --- a/deploy/adapters/ansible/roles/config-osa/tasks/main.yml +++ b/deploy/adapters/ansible/roles/config-osa/tasks/main.yml @@ -252,3 +252,14 @@ include: noha.yml when: - "{{ hostvars[inventory_hostname]['groups']['controller'] | length < 2 }}" + +- name: copy the repo_fix_andas.yml + template: + src: repo_fix_pandas.yml + dest: /etc/ansible/roles/repo_build/tasks/repo_fix_pandas.yml + +- name: change repore build + lineinfile: + dest: /etc/ansible/roles/repo_build/tasks/main.yml + insertafter: "^- include: repo_post_build.yml" + line: "- include: repo_fix_pandas.yml" |