From: Johannes Kastl Date: Tue, 20 Aug 2019 09:23:29 +0000 (+0200) Subject: remove duplicate task installing suse dependencies X-Git-Tag: v5.0.0alpha1~160 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=504017d56257b590deed68fdaa0fe69ad3dfb919;p=ceph-ansible.git remove duplicate task installing suse dependencies roles/ceph-common/tasks/installs/install_on_suse.yml: remove the task that installs the dependencies, as this is done later in install_suse_packages.yml Signed-off-by: Johannes Kastl --- diff --git a/roles/ceph-common/tasks/installs/install_on_suse.yml b/roles/ceph-common/tasks/installs/install_on_suse.yml index e185d56dd..e572b65dd 100644 --- a/roles/ceph-common/tasks/installs/install_on_suse.yml +++ b/roles/ceph-common/tasks/installs/install_on_suse.yml @@ -11,14 +11,5 @@ include_tasks: configure_suse_repository_installation.yml when: ceph_origin == 'repository' -- name: install dependencies - zypper: - name: "{{ item }}" - state: present - update_cache: yes - with_items: "{{ suse_package_dependencies }}" - register: result - until: result is succeeded - - name: include install_suse_packages.yml include_tasks: install_suse_packages.yml