From e6bfb843f4549e23a58ea5dec9465e0ea5833d98 Mon Sep 17 00:00:00 2001 From: Guillaume Abrioux Date: Thu, 11 Apr 2019 17:00:58 +0200 Subject: [PATCH] switch_to_containers: remove ceph-disk references as of stable-4.0, ceph-disk is no longer supported. Signed-off-by: Guillaume Abrioux --- ...ontainerized-to-containerized-ceph-daemons.yml | 15 --------------- 1 file changed, 15 deletions(-) diff --git a/infrastructure-playbooks/switch-from-non-containerized-to-containerized-ceph-daemons.yml b/infrastructure-playbooks/switch-from-non-containerized-to-containerized-ceph-daemons.yml index a2dd9c989..4d6168f33 100644 --- a/infrastructure-playbooks/switch-from-non-containerized-to-containerized-ceph-daemons.yml +++ b/infrastructure-playbooks/switch-from-non-containerized-to-containerized-ceph-daemons.yml @@ -227,21 +227,6 @@ - import_role: name: ceph-defaults - - name: collect running osds and ceph-disk unit(s) - shell: | - systemctl list-units | grep "loaded active" | grep -Eo 'ceph-osd@[0-9]+.service|ceph-disk@dev-[a-z]{3,4}[0-9]{1}.service|ceph-volume|ceph\.target' - register: running_osds - changed_when: false - failed_when: false - - - name: stop/disable/mask non-containerized ceph osd(s) and ceph-disk units (if any) - systemd: - name: "{{ item }}" - state: stopped - enabled: no - with_items: "{{ running_osds.stdout_lines | default([])}}" - when: running_osds != [] - - name: remove old ceph-osd systemd units file: path: "{{ item }}"