Install python routes package as a dependancy rather than directly

This is now a dependancy of ceph-mgr so will be installed automatically
and does not need a specific task.

This change means that ceph-mgr installs correctly on Ubuntu Focal where
the python3-routes package is necessary.

Signed-off-by: Jonathan Rosser <jonathan.rosser@rd.bbc.co.uk>
(cherry picked from commit 92288c11c5)
pull/5469/head
Jonathan Rosser 2020-06-18 16:40:52 +01:00 committed by Dimitri Savineau
parent 7eddd89afa
commit 77002c12c8
1 changed files with 0 additions and 9 deletions

View File

@ -34,12 +34,3 @@
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"