mirror of https://github.com/ceph/ceph-ansible.git
ceph-mgr: install python-routes for dashboard
The ceph mgr dashboard requires routes python library to be installed
on the system.
Resolves: #3995
Signed-off-by: Dimitri Savineau <dsavinea@redhat.com>
(cherry picked from commit f37edfa113
)
pull/4028/head
parent
6d521f1516
commit
27bd7df5cf
|
@ -24,3 +24,12 @@
|
|||
register: result
|
||||
until: result is succeeded
|
||||
when: ansible_os_family == 'Debian'
|
||||
|
||||
- name: install routes python library for dashboard module
|
||||
apt:
|
||||
name: python-routes
|
||||
register: result
|
||||
until: result is succeeded
|
||||
when:
|
||||
- ansible_os_family == 'Debian'
|
||||
- "'ceph-mgr-dashboard' in ceph_mgr_packages"
|
||||
|
|
Loading…
Reference in New Issue