diff options
author | grakiss <grakiss.wanglei@huawei.com> | 2016-02-25 07:19:00 -0500 |
---|---|---|
committer | grakiss <grakiss.wanglei@huawei.com> | 2016-02-25 07:19:00 -0500 |
commit | cf09c45a4a47fdf1fa86dff4af45a64ba10597d5 (patch) | |
tree | f769c9a55becac5e583b2b45c4e048a41816de47 /deploy/adapters/ansible/roles/common/tasks | |
parent | bb0ee921be7b53609e3b942ad7aeee8b06f458d5 (diff) |
Fix: CEPH issues on centos7
JIRA:COMPASS-323
- path error for init script
- fix centos bug for python-crypto installation
- fix redhat-lsd-core installation
Change-Id: I5b6aaa7310a516d3938e6487aa71642fa0a643cf
Signed-off-by: grakiss <grakiss.wanglei@huawei.com>
Diffstat (limited to 'deploy/adapters/ansible/roles/common/tasks')
-rw-r--r-- | deploy/adapters/ansible/roles/common/tasks/main.yml | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/deploy/adapters/ansible/roles/common/tasks/main.yml b/deploy/adapters/ansible/roles/common/tasks/main.yml index d195703a..f004e98d 100644 --- a/deploy/adapters/ansible/roles/common/tasks/main.yml +++ b/deploy/adapters/ansible/roles/common/tasks/main.yml @@ -29,6 +29,16 @@ echo "# compass" >> /etc/hosts echo {{ COMPASS_SERVER.stdout_lines[0] }} {{ name.stdout_lines[0] }} >> /etc/hosts +- name: install python-crypto + yum: name=python-crypto state=present + register: python_crypto_result + ignore_errors: yes + when: ansible_os_family == "RedHat" + +- name: remove python crypt egg file to work-around https://bugs.centos.org/view.php?id=9896&nbn=2 + shell: rm -rf /usr/lib64/python2.7/site-packages/pycrypto-2.6.1-py2.7.egg-info + when: ansible_os_family == "RedHat" and python_crypto_result.msg == "Error unpacking rpm package python2-crypto-2.6.1-9.el7.x86_64\n" + - name: install packages action: "{{ ansible_pkg_mgr }} name={{ item }} state=latest update_cache=yes" with_items: packages | union(packages_noarch) |