From: Sébastien Han Date: Thu, 31 Aug 2017 16:27:43 +0000 (+0200) Subject: ceph-common: remove useless changed task X-Git-Tag: v3.0.0rc5~4^2 X-Git-Url: http://git.apps.os.sepia.ceph.com/?a=commitdiff_plain;h=7ee1f88ee59a248d736f85bb70b91dcebab8151c;p=ceph-ansible.git ceph-common: remove useless changed task There is no need to show a "changed" at the end of the play for a "command" module task. Signed-off-by: Sébastien Han --- diff --git a/roles/ceph-common/tasks/installs/configure_redhat_repository_installation.yml b/roles/ceph-common/tasks/installs/configure_redhat_repository_installation.yml index eca135081..8674062be 100644 --- a/roles/ceph-common/tasks/installs/configure_redhat_repository_installation.yml +++ b/roles/ceph-common/tasks/installs/configure_redhat_repository_installation.yml @@ -22,5 +22,6 @@ # Remove yum caches so yum doesn't get confused if we are reinstalling a different ceph version - name: purge yum cache command: yum clean all + changed_when: false when: ansible_pkg_mgr == 'yum'