From f34e60813b80e3a991c16a1ad01ec2bd6a6cdad2 Mon Sep 17 00:00:00 2001 From: =?utf8?q?S=C3=A9bastien=20Han?= Date: Fri, 10 Oct 2014 15:34:11 +0200 Subject: [PATCH] Remove ansible managed header from ceph.conf MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit In ceph-common you load {{ ansible_managed }} at the top of the main config file - this will trigger handlers on that file whenever an Ansible run is made. I'd suggest replacing it with a vanilla text comment 'managed by Ansible' to warn admins but avoid unnecessary cluster bounces. fixes: #125 Signed-off-by: Sébastien Han --- roles/ceph-common/templates/ceph.conf.j2 | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/roles/ceph-common/templates/ceph.conf.j2 b/roles/ceph-common/templates/ceph.conf.j2 index bb13b85ae..857fd463d 100644 --- a/roles/ceph-common/templates/ceph.conf.j2 +++ b/roles/ceph-common/templates/ceph.conf.j2 @@ -1,4 +1,5 @@ -# {{ ansible_managed }} +# This file is managed by Ansible. +# Every change will be overwritten. [global] {% if cephx %} -- 2.47.3